From 373ac01e4ec7764251b0bfaff0c86f60e5e0d93b Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 19 Nov 2019 11:23:30 -0500 Subject: [PATCH] Fix for #3 and maximum scan depth --- Docker/build.sh | 1 + src/cli.c | 9 +++++++++ src/cli.h | 1 + src/ctx.h | 1 + src/io/walk.c | 2 +- src/main.c | 5 ++++- src/tpool.c | 17 +++++++++++++---- src/web/auth_basic.c | 2 +- src/web/static_generated.c | 2 +- web/search.html | 2 +- 10 files changed, 33 insertions(+), 9 deletions(-) diff --git a/Docker/build.sh b/Docker/build.sh index 255f931..297f104 100755 --- a/Docker/build.sh +++ b/Docker/build.sh @@ -1,3 +1,4 @@ +rm ./sist2 cp ../sist2 . version=$(./sist2 --version) diff --git a/src/cli.c b/src/cli.c index 3444f79..18ded85 100644 --- a/src/cli.c +++ b/src/cli.c @@ -14,6 +14,9 @@ scan_args_t *scan_args_create() { scan_args_t *args = calloc(sizeof(scan_args_t), 1); + + args->depth = -1; + return args; } @@ -80,6 +83,12 @@ int scan_args_validate(scan_args_t *args, int argc, const char **argv) { return 1; } + if (args->depth < 0) { + args->depth = G_MAXINT32; + } else { + args->depth += 1; + } + if (args->name == NULL) { args->name = g_path_get_basename(args->output); } diff --git a/src/cli.h b/src/cli.h index 7734f2e..0b9a3ef 100644 --- a/src/cli.h +++ b/src/cli.h @@ -12,6 +12,7 @@ typedef struct scan_args { char *output; char *rewrite_url; char *name; + int depth; char *path; } scan_args_t; diff --git a/src/ctx.h b/src/ctx.h index 207f72b..a283894 100644 --- a/src/ctx.h +++ b/src/ctx.h @@ -15,6 +15,7 @@ struct { int threads; int content_size; float tn_qscale; + int depth; size_t stat_tn_size; size_t stat_index_size; diff --git a/src/io/walk.c b/src/io/walk.c index 483ac90..67dd6c4 100644 --- a/src/io/walk.c +++ b/src/io/walk.c @@ -20,7 +20,7 @@ parse_job_t *create_parse_job(const char *filepath, const struct stat *info, int } int handle_entry(const char *filepath, const struct stat *info, int typeflag, struct FTW *ftw) { - if (typeflag == FTW_F && S_ISREG(info->st_mode)) { + if (ftw->level <= ScanCtx.depth && typeflag == FTW_F && S_ISREG(info->st_mode)) { parse_job_t *job = create_parse_job(filepath, info, ftw->base); tpool_add_work(ScanCtx.pool, parse, job); } diff --git a/src/main.c b/src/main.c index 0ac7239..0c00f7c 100644 --- a/src/main.c +++ b/src/main.c @@ -10,7 +10,7 @@ #define EPILOG "Made by simon987 . Released under GPL-3.0" -static const char *const Version = "1.1.7"; +static const char *const Version = "1.1.8"; static const char *const usage[] = { "sist2 scan [OPTION]... PATH", "sist2 index [OPTION]... INDEX", @@ -53,6 +53,7 @@ void sist2_scan(scan_args_t *args) { ScanCtx.tn_size = args->size; ScanCtx.content_size = args->content_size; ScanCtx.threads = args->threads; + ScanCtx.depth = args->depth; strncpy(ScanCtx.index.path, args->output, sizeof(ScanCtx.index.path)); strncpy(ScanCtx.index.desc.name, args->name, sizeof(ScanCtx.index.desc.name)); strncpy(ScanCtx.index.desc.root, args->path, sizeof(ScanCtx.index.desc.root)); @@ -231,6 +232,8 @@ int main(int argc, const char *argv[]) { OPT_STRING('o', "output", &scan_args->output, "Output directory. DEFAULT=index.sist2/"), OPT_STRING(0, "rewrite-url", &scan_args->rewrite_url, "Serve files from this url instead of from disk."), OPT_STRING(0, "name", &scan_args->name, "Index display name. DEFAULT: (name of the directory)"), + OPT_INTEGER(0, "depth", &scan_args->depth, "Scan up to DEPTH subdirectories deep. " + "Use 0 to only scan files in PATH. DEFAULT: -1"), #ifndef SIST_SCAN_ONLY OPT_GROUP("Index options"), diff --git a/src/tpool.c b/src/tpool.c index f476a33..1e7770b 100644 --- a/src/tpool.c +++ b/src/tpool.c @@ -114,12 +114,18 @@ static void *tpool_worker(void *arg) { pthread_mutex_unlock(&(pool->work_mutex)); if (work != NULL) { + if (pool->stop) { + break; + } + work->func(work->arg); free(work); } pthread_mutex_lock(&(pool->work_mutex)); - pool->done_cnt++; + if (work != NULL) { + pool->done_cnt++; + } progress_bar_print((double) pool->done_cnt / pool->work_cnt, ScanCtx.stat_tn_size, ScanCtx.stat_index_size); @@ -142,11 +148,14 @@ void tpool_wait(tpool_t *pool) { if (pool->done_cnt < pool->work_cnt) { pthread_cond_wait(&(pool->working_cond), &(pool->work_mutex)); } else { - pool->stop = 1; - break; + usleep(500000); + if (pool->done_cnt == pool->work_cnt) { + pool->stop = 1; + break; + } } - progress_bar_print(100.0, ScanCtx.stat_tn_size, ScanCtx.stat_index_size); } + progress_bar_print(1.0, ScanCtx.stat_tn_size, ScanCtx.stat_index_size); pthread_mutex_unlock(&(pool->work_mutex)); } diff --git a/src/web/auth_basic.c b/src/web/auth_basic.c index 34fb2c5..80ea9c9 100644 --- a/src/web/auth_basic.c +++ b/src/web/auth_basic.c @@ -1,4 +1,4 @@ -#import "auth_basic.h" +#include "auth_basic.h" #define UNAUTHORIZED_TEXT "Unauthorized" diff --git a/src/web/static_generated.c b/src/web/static_generated.c index 64b7474..d12bc58 100644 --- a/src/web/static_generated.c +++ b/src/web/static_generated.c @@ -3,4 +3,4 @@ char bundle_dark_css[188381] = {46,97,117,116,111,99,111,109,112,108,101,116,101 char bundle_js[408059] = {47,42,33,32,106,81,117,101,114,121,32,118,51,46,52,46,49,32,124,32,40,99,41,32,74,83,32,70,111,117,110,100,97,116,105,111,110,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,32,124,32,106,113,117,101,114,121,46,111,114,103,47,108,105,99,101,110,115,101,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,101,46,100,111,99,117,109,101,110,116,63,116,40,101,44,33,48,41,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,101,46,100,111,99,117,109,101,110,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,106,81,117,101,114,121,32,114,101,113,117,105,114,101,115,32,97,32,119,105,110,100,111,119,32,119,105,116,104,32,97,32,100,111,99,117,109,101,110,116,34,41,59,114,101,116,117,114,110,32,116,40,101,41,125,58,116,40,101,41,125,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,116,104,105,115,44,102,117,110,99,116,105,111,110,40,67,44,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,118,97,114,32,116,61,91,93,44,69,61,67,46,100,111,99,117,109,101,110,116,44,114,61,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,115,61,116,46,115,108,105,99,101,44,103,61,116,46,99,111,110,99,97,116,44,117,61,116,46,112,117,115,104,44,105,61,116,46,105,110,100,101,120,79,102,44,110,61,123,125,44,111,61,110,46,116,111,83,116,114,105,110,103,44,118,61,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,97,61,118,46,116,111,83,116,114,105,110,103,44,108,61,97,46,99,97,108,108,40,79,98,106,101,99,116,41,44,121,61,123,125,44,109,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,101,46,110,111,100,101,84,121,112,101,125,44,120,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,101,61,61,61,101,46,119,105,110,100,111,119,125,44,99,61,123,116,121,112,101,58,33,48,44,115,114,99,58,33,48,44,110,111,110,99,101,58,33,48,44,110,111,77,111,100,117,108,101,58,33,48,125,59,102,117,110,99,116,105,111,110,32,98,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,40,110,61,110,124,124,69,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,99,114,105,112,116,34,41,59,105,102,40,111,46,116,101,120,116,61,101,44,116,41,102,111,114,40,114,32,105,110,32,99,41,40,105,61,116,91,114,93,124,124,116,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,38,38,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,114,44,105,41,59,110,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,101,43,34,34,58,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,63,110,91,111,46,99,97,108,108,40,101,41,93,124,124,34,111,98,106,101,99,116,34,58,116,121,112,101,111,102,32,101,125,118,97,114,32,102,61,34,51,46,52,46,49,34,44,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,107,46,102,110,46,105,110,105,116,40,101,44,116,41,125,44,112,61,47,94,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,124,91,92,115,92,117,70,69,70,70,92,120,65,48,93,43,36,47,103,59,102,117,110,99,116,105,111,110,32,100,40,101,41,123,118,97,114,32,116,61,33,33,101,38,38,34,108,101,110,103,116,104,34,105,110,32,101,38,38,101,46,108,101,110,103,116,104,44,110,61,119,40,101,41,59,114,101,116,117,114,110,33,109,40,101,41,38,38,33,120,40,101,41,38,38,40,34,97,114,114,97,121,34,61,61,61,110,124,124,48,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,38,38,48,60,116,38,38,116,45,49,32,105,110,32,101,41,125,107,46,102,110,61,107,46,112,114,111,116,111,116,121,112,101,61,123,106,113,117,101,114,121,58,102,44,99,111,110,115,116,114,117,99,116,111,114,58,107,44,108,101,110,103,116,104,58,48,44,116,111,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,99,97,108,108,40,116,104,105,115,41,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,115,46,99,97,108,108,40,116,104,105,115,41,58,101,60,48,63,116,104,105,115,91,101,43,116,104,105,115,46,108,101,110,103,116,104,93,58,116,104,105,115,91,101,93,125,44,112,117,115,104,83,116,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,109,101,114,103,101,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,44,101,41,59,114,101,116,117,114,110,32,116,46,112,114,101,118,79,98,106,101,99,116,61,116,104,105,115,44,116,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,116,104,105,115,44,101,41,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,109,97,112,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,46,99,97,108,108,40,101,44,116,44,101,41,125,41,41,125,44,115,108,105,99,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,115,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,44,102,105,114,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,48,41,125,44,108,97,115,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,113,40,45,49,41,125,44,101,113,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,108,101,110,103,116,104,44,110,61,43,101,43,40,101,60,48,63,116,58,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,48,60,61,110,38,38,110,60,116,63,91,116,104,105,115,91,110,93,93,58,91,93,41,125,44,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,124,124,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,41,125,44,112,117,115,104,58,117,44,115,111,114,116,58,116,46,115,111,114,116,44,115,112,108,105,99,101,58,116,46,115,112,108,105,99,101,125,44,107,46,101,120,116,101,110,100,61,107,46,102,110,46,101,120,116,101,110,100,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,44,105,44,111,44,97,61,97,114,103,117,109,101,110,116,115,91,48,93,124,124,123,125,44,115,61,49,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,108,61,33,49,59,102,111,114,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,38,38,40,108,61,97,44,97,61,97,114,103,117,109,101,110,116,115,91,115,93,124,124,123,125,44,115,43,43,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,97,124,124,109,40,97,41,124,124,40,97,61,123,125,41,44,115,61,61,61,117,38,38,40,97,61,116,104,105,115,44,115,45,45,41,59,115,60,117,59,115,43,43,41,105,102,40,110,117,108,108,33,61,40,101,61,97,114,103,117,109,101,110,116,115,91,115,93,41,41,102,111,114,40,116,32,105,110,32,101,41,114,61,101,91,116,93,44,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,38,38,97,33,61,61,114,38,38,40,108,38,38,114,38,38,40,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,114,41,124,124,40,105,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,114,41,41,41,63,40,110,61,97,91,116,93,44,111,61,105,38,38,33,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,91,93,58,105,124,124,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,110,41,63,110,58,123,125,44,105,61,33,49,44,97,91,116,93,61,107,46,101,120,116,101,110,100,40,108,44,111,44,114,41,41,58,118,111,105,100,32,48,33,61,61,114,38,38,40,97,91,116,93,61,114,41,41,59,114,101,116,117,114,110,32,97,125,44,107,46,101,120,116,101,110,100,40,123,101,120,112,97,110,100,111,58,34,106,81,117,101,114,121,34,43,40,102,43,77,97,116,104,46,114,97,110,100,111,109,40,41,41,46,114,101,112,108,97,99,101,40,47,92,68,47,103,44,34,34,41,44,105,115,82,101,97,100,121,58,33,48,44,101,114,114,111,114,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,101,41,125,44,110,111,111,112,58,102,117,110,99,116,105,111,110,40,41,123,125,44,105,115,80,108,97,105,110,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,59,114,101,116,117,114,110,33,40,33,101,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,61,111,46,99,97,108,108,40,101,41,41,38,38,40,33,40,116,61,114,40,101,41,41,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,110,61,118,46,99,97,108,108,40,116,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,41,38,38,97,46,99,97,108,108,40,110,41,61,61,61,108,41,125,44,105,115,69,109,112,116,121,79,98,106,101,99,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,102,111,114,40,116,32,105,110,32,101,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,103,108,111,98,97,108,69,118,97,108,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,98,40,101,44,123,110,111,110,99,101,58,116,38,38,116,46,110,111,110,99,101,125,41,125,44,101,97,99,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,59,105,102,40,100,40,101,41,41,123,102,111,114,40,110,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,125,101,108,115,101,32,102,111,114,40,114,32,105,110,32,101,41,105,102,40,33,49,61,61,61,116,46,99,97,108,108,40,101,91,114,93,44,114,44,101,91,114,93,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,101,125,44,116,114,105,109,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,112,44,34,34,41,125,44,109,97,107,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,91,93,59,114,101,116,117,114,110,32,110,117,108,108,33,61,101,38,38,40,100,40,79,98,106,101,99,116,40,101,41,41,63,107,46,109,101,114,103,101,40,110,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,91,101,93,58,101,41,58,117,46,99,97,108,108,40,110,44,101,41,41,44,110,125,44,105,110,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,45,49,58,105,46,99,97,108,108,40,116,44,101,44,110,41,125,44,109,101,114,103,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,43,116,46,108,101,110,103,116,104,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,110,59,114,43,43,41,101,91,105,43,43,93,61,116,91,114,93,59,114,101,116,117,114,110,32,101,46,108,101,110,103,116,104,61,105,44,101,125,44,103,114,101,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,91,93,44,105,61,48,44,111,61,101,46,108,101,110,103,116,104,44,97,61,33,110,59,105,60,111,59,105,43,43,41,33,116,40,101,91,105,93,44,105,41,33,61,61,97,38,38,114,46,112,117,115,104,40,101,91,105,93,41,59,114,101,116,117,114,110,32,114,125,44,109,97,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,48,44,97,61,91,93,59,105,102,40,100,40,101,41,41,102,111,114,40,114,61,101,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,101,108,115,101,32,102,111,114,40,111,32,105,110,32,101,41,110,117,108,108,33,61,40,105,61,116,40,101,91,111,93,44,111,44,110,41,41,38,38,97,46,112,117,115,104,40,105,41,59,114,101,116,117,114,110,32,103,46,97,112,112,108,121,40,91,93,44,97,41,125,44,103,117,105,100,58,49,44,115,117,112,112,111,114,116,58,121,125,41,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,83,121,109,98,111,108,38,38,40,107,46,102,110,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,61,116,91,83,121,109,98,111,108,46,105,116,101,114,97,116,111,114,93,41,44,107,46,101,97,99,104,40,34,66,111,111,108,101,97,110,32,78,117,109,98,101,114,32,83,116,114,105,110,103,32,70,117,110,99,116,105,111,110,32,65,114,114,97,121,32,68,97,116,101,32,82,101,103,69,120,112,32,79,98,106,101,99,116,32,69,114,114,111,114,32,83,121,109,98,111,108,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,34,91,111,98,106,101,99,116,32,34,43,116,43,34,93,34,93,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,59,118,97,114,32,104,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,101,44,100,44,98,44,111,44,105,44,104,44,102,44,103,44,119,44,117,44,108,44,84,44,67,44,97,44,69,44,118,44,115,44,99,44,121,44,107,61,34,115,105,122,122,108,101,34,43,49,42,110,101,119,32,68,97,116,101,44,109,61,110,46,100,111,99,117,109,101,110,116,44,83,61,48,44,114,61,48,44,112,61,117,101,40,41,44,120,61,117,101,40,41,44,78,61,117,101,40,41,44,65,61,117,101,40,41,44,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,116,38,38,40,108,61,33,48,41,44,48,125,44,106,61,123,125,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,116,61,91,93,44,113,61,116,46,112,111,112,44,76,61,116,46,112,117,115,104,44,72,61,116,46,112,117,115,104,44,79,61,116,46,115,108,105,99,101,44,80,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,105,102,40,101,91,110,93,61,61,61,116,41,114,101,116,117,114,110,32,110,59,114,101,116,117,114,110,45,49,125,44,82,61,34,99,104,101,99,107,101,100,124,115,101,108,101,99,116,101,100,124,97,115,121,110,99,124,97,117,116,111,102,111,99,117,115,124,97,117,116,111,112,108,97,121,124,99,111,110,116,114,111,108,115,124,100,101,102,101,114,124,100,105,115,97,98,108,101,100,124,104,105,100,100,101,110,124,105,115,109,97,112,124,108,111,111,112,124,109,117,108,116,105,112,108,101,124,111,112,101,110,124,114,101,97,100,111,110,108,121,124,114,101,113,117,105,114,101,100,124,115,99,111,112,101,100,34,44,77,61,34,91,92,92,120,50,48,92,92,116,92,92,114,92,92,110,92,92,102,93,34,44,73,61,34,40,63,58,92,92,92,92,46,124,91,92,92,119,45,93,124,91,94,92,48,45,92,92,120,97,48,93,41,43,34,44,87,61,34,92,92,91,34,43,77,43,34,42,40,34,43,73,43,34,41,40,63,58,34,43,77,43,34,42,40,91,42,94,36,124,33,126,93,63,61,41,34,43,77,43,34,42,40,63,58,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,124,40,34,43,73,43,34,41,41,124,41,34,43,77,43,34,42,92,92,93,34,44,36,61,34,58,40,34,43,73,43,34,41,40,63,58,92,92,40,40,40,39,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,39,93,41,42,41,39,124,92,34,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,92,34,93,41,42,41,92,34,41,124,40,40,63,58,92,92,92,92,46,124,91,94,92,92,92,92,40,41,91,92,92,93,93,124,34,43,87,43,34,41,42,41,124,46,42,41,92,92,41,124,41,34,44,70,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,43,34,44,34,103,34,41,44,66,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,43,124,40,40,63,58,94,124,91,94,92,92,92,92,93,41,40,63,58,92,92,92,92,46,41,42,41,34,43,77,43,34,43,36,34,44,34,103,34,41,44,95,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,44,34,43,77,43,34,42,34,41,44,122,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,40,91,62,43,126,93,124,34,43,77,43,34,41,34,43,77,43,34,42,34,41,44,85,61,110,101,119,32,82,101,103,69,120,112,40,77,43,34,124,62,34,41,44,88,61,110,101,119,32,82,101,103,69,120,112,40,36,41,44,86,61,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,73,43,34,36,34,41,44,71,61,123,73,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,35,40,34,43,73,43,34,41,34,41,44,67,76,65,83,83,58,110,101,119,32,82,101,103,69,120,112,40,34,94,92,92,46,40,34,43,73,43,34,41,34,41,44,84,65,71,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,73,43,34,124,91,42,93,41,34,41,44,65,84,84,82,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,87,41,44,80,83,69,85,68,79,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,36,41,44,67,72,73,76,68,58,110,101,119,32,82,101,103,69,120,112,40,34,94,58,40,111,110,108,121,124,102,105,114,115,116,124,108,97,115,116,124,110,116,104,124,110,116,104,45,108,97,115,116,41,45,40,99,104,105,108,100,124,111,102,45,116,121,112,101,41,40,63,58,92,92,40,34,43,77,43,34,42,40,101,118,101,110,124,111,100,100,124,40,40,91,43,45,93,124,41,40,92,92,100,42,41,110,124,41,34,43,77,43,34,42,40,63,58,40,91,43,45,93,124,41,34,43,77,43,34,42,40,92,92,100,43,41,124,41,41,34,43,77,43,34,42,92,92,41,124,41,34,44,34,105,34,41,44,98,111,111,108,58,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,34,43,82,43,34,41,36,34,44,34,105,34,41,44,110,101,101,100,115,67,111,110,116,101,120,116,58,110,101,119,32,82,101,103,69,120,112,40,34,94,34,43,77,43,34,42,91,62,43,126,93,124,58,40,101,118,101,110,124,111,100,100,124,101,113,124,103,116,124,108,116,124,110,116,104,124,102,105,114,115,116,124,108,97,115,116,41,40,63,58,92,92,40,34,43,77,43,34,42,40,40,63,58,45,92,92,100,41,63,92,92,100,42,41,34,43,77,43,34,42,92,92,41,124,41,40,63,61,91,94,45,93,124,36,41,34,44,34,105,34,41,125,44,89,61,47,72,84,77,76,36,47,105,44,81,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,74,61,47,94,104,92,100,36,47,105,44,75,61,47,94,91,94,123,93,43,92,123,92,115,42,92,91,110,97,116,105,118,101,32,92,119,47,44,90,61,47,94,40,63,58,35,40,91,92,119,45,93,43,41,124,40,92,119,43,41,124,92,46,40,91,92,119,45,93,43,41,41,36,47,44,101,101,61,47,91,43,126,93,47,44,116,101,61,110,101,119,32,82,101,103,69,120,112,40,34,92,92,92,92,40,91,92,92,100,97,45,102,93,123,49,44,54,125,34,43,77,43,34,63,124,40,34,43,77,43,34,41,124,46,41,34,44,34,105,103,34,41,44,110,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,34,48,120,34,43,116,45,54,53,53,51,54,59,114,101,116,117,114,110,32,114,33,61,114,124,124,110,63,116,58,114,60,48,63,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,43,54,53,53,51,54,41,58,83,116,114,105,110,103,46,102,114,111,109,67,104,97,114,67,111,100,101,40,114,62,62,49,48,124,53,53,50,57,54,44,49,48,50,51,38,114,124,53,54,51,50,48,41,125,44,114,101,61,47,40,91,92,48,45,92,120,49,102,92,120,55,102,93,124,94,45,63,92,100,41,124,94,45,36,124,91,94,92,48,45,92,120,49,102,92,120,55,102,45,92,117,70,70,70,70,92,119,45,93,47,103,44,105,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,34,92,48,34,61,61,61,101,63,34,92,117,102,102,102,100,34,58,101,46,115,108,105,99,101,40,48,44,45,49,41,43,34,92,92,34,43,101,46,99,104,97,114,67,111,100,101,65,116,40,101,46,108,101,110,103,116,104,45,49,41,46,116,111,83,116,114,105,110,103,40,49,54,41,43,34,32,34,58,34,92,92,34,43,101,125,44,111,101,61,102,117,110,99,116,105,111,110,40,41,123,84,40,41,125,44,97,101,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,48,61,61,61,101,46,100,105,115,97,98,108,101,100,38,38,34,102,105,101,108,100,115,101,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,110,101,120,116,58,34,108,101,103,101,110,100,34,125,41,59,116,114,121,123,72,46,97,112,112,108,121,40,116,61,79,46,99,97,108,108,40,109,46,99,104,105,108,100,78,111,100,101,115,41,44,109,46,99,104,105,108,100,78,111,100,101,115,41,44,116,91,109,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,93,46,110,111,100,101,84,121,112,101,125,99,97,116,99,104,40,101,41,123,72,61,123,97,112,112,108,121,58,116,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,76,46,97,112,112,108,121,40,101,44,79,46,99,97,108,108,40,116,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,108,101,110,103,116,104,44,114,61,48,59,119,104,105,108,101,40,101,91,110,43,43,93,61,116,91,114,43,43,93,41,59,101,46,108,101,110,103,116,104,61,110,45,49,125,125,125,102,117,110,99,116,105,111,110,32,115,101,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,101,38,38,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,112,61,101,63,101,46,110,111,100,101,84,121,112,101,58,57,59,105,102,40,110,61,110,124,124,91,93,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,124,124,33,116,124,124,49,33,61,61,112,38,38,57,33,61,61,112,38,38,49,49,33,61,61,112,41,114,101,116,117,114,110,32,110,59,105,102,40,33,114,38,38,40,40,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,41,33,61,61,67,38,38,84,40,101,41,44,101,61,101,124,124,67,44,69,41,41,123,105,102,40,49,49,33,61,61,112,38,38,40,117,61,90,46,101,120,101,99,40,116,41,41,41,105,102,40,105,61,117,91,49,93,41,123,105,102,40,57,61,61,61,112,41,123,105,102,40,33,40,97,61,101,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,41,114,101,116,117,114,110,32,110,59,105,102,40,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,32,105,102,40,102,38,38,40,97,61,102,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,105,41,41,38,38,121,40,101,44,97,41,38,38,97,46,105,100,61,61,61,105,41,114,101,116,117,114,110,32,110,46,112,117,115,104,40,97,41,44,110,125,101,108,115,101,123,105,102,40,117,91,50,93,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,41,41,44,110,59,105,102,40,40,105,61,117,91,51,93,41,38,38,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,105,41,41,44,110,125,105,102,40,100,46,113,115,97,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,38,38,40,49,33,61,61,112,124,124,34,111,98,106,101,99,116,34,33,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,123,105,102,40,99,61,116,44,102,61,101,44,49,61,61,61,112,38,38,85,46,116,101,115,116,40,116,41,41,123,40,115,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,41,63,115,61,115,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,115,61,107,41,44,111,61,40,108,61,104,40,116,41,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,108,91,111,93,61,34,35,34,43,115,43,34,32,34,43,120,101,40,108,91,111,93,41,59,99,61,108,46,106,111,105,110,40,34,44,34,41,44,102,61,101,101,46,116,101,115,116,40,116,41,38,38,121,101,40,101,46,112,97,114,101,110,116,78,111,100,101,41,124,124,101,125,116,114,121,123,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,99,41,41,44,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,102,105,110,97,108,108,121,123,115,61,61,61,107,38,38,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,125,125,125,114,101,116,117,114,110,32,103,40,116,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,101,44,110,44,114,41,125,102,117,110,99,116,105,111,110,32,117,101,40,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,101,40,116,44,110,41,123,114,101,116,117,114,110,32,114,46,112,117,115,104,40,116,43,34,32,34,41,62,98,46,99,97,99,104,101,76,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,114,46,115,104,105,102,116,40,41,93,44,101,91,116,43,34,32,34,93,61,110,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,114,101,116,117,114,110,32,101,91,107,93,61,33,48,44,101,125,102,117,110,99,116,105,111,110,32,99,101,40,101,41,123,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,59,116,114,121,123,114,101,116,117,114,110,33,33,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,33,49,125,102,105,110,97,108,108,121,123,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,116,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,115,112,108,105,116,40,34,124,34,41,44,114,61,110,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,98,46,97,116,116,114,72,97,110,100,108,101,91,110,91,114,93,93,61,116,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,41,123,118,97,114,32,110,61,116,38,38,101,44,114,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,101,46,115,111,117,114,99,101,73,110,100,101,120,45,116,46,115,111,117,114,99,101,73,110,100,101,120,59,105,102,40,114,41,114,101,116,117,114,110,32,114,59,105,102,40,110,41,119,104,105,108,101,40,110,61,110,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,45,49,59,114,101,116,117,114,110,32,101,63,49,58,45,49,125,102,117,110,99,116,105,111,110,32,100,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,101,46,116,121,112,101,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,104,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,40,34,105,110,112,117,116,34,61,61,61,116,124,124,34,98,117,116,116,111,110,34,61,61,61,116,41,38,38,101,46,116,121,112,101,61,61,61,110,125,125,102,117,110,99,116,105,111,110,32,103,101,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,102,111,114,109,34,105,110,32,101,63,101,46,112,97,114,101,110,116,78,111,100,101,38,38,33,49,61,61,61,101,46,100,105,115,97,98,108,101,100,63,34,108,97,98,101,108,34,105,110,32,101,63,34,108,97,98,101,108,34,105,110,32,101,46,112,97,114,101,110,116,78,111,100,101,63,101,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,101,46,105,115,68,105,115,97,98,108,101,100,61,61,61,116,124,124,101,46,105,115,68,105,115,97,98,108,101,100,33,61,61,33,116,38,38,97,101,40,101,41,61,61,61,116,58,101,46,100,105,115,97,98,108,101,100,61,61,61,116,58,34,108,97,98,101,108,34,105,110,32,101,38,38,101,46,100,105,115,97,98,108,101,100,61,61,61,116,125,125,102,117,110,99,116,105,111,110,32,118,101,40,97,41,123,114,101,116,117,114,110,32,108,101,40,102,117,110,99,116,105,111,110,40,111,41,123,114,101,116,117,114,110,32,111,61,43,111,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,91,93,44,101,46,108,101,110,103,116,104,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,114,91,105,93,93,38,38,40,101,91,110,93,61,33,40,116,91,110,93,61,101,91,110,93,41,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,121,101,40,101,41,123,114,101,116,117,114,110,32,101,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,38,38,101,125,102,111,114,40,101,32,105,110,32,100,61,115,101,46,115,117,112,112,111,114,116,61,123,125,44,105,61,115,101,46,105,115,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,97,109,101,115,112,97,99,101,85,82,73,44,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,33,89,46,116,101,115,116,40,116,124,124,110,38,38,110,46,110,111,100,101,78,97,109,101,124,124,34,72,84,77,76,34,41,125,44,84,61,115,101,46,115,101,116,68,111,99,117,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,101,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,58,109,59,114,101,116,117,114,110,32,114,33,61,61,67,38,38,57,61,61,61,114,46,110,111,100,101,84,121,112,101,38,38,114,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,40,97,61,40,67,61,114,41,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,69,61,33,105,40,67,41,44,109,33,61,61,67,38,38,40,110,61,67,46,100,101,102,97,117,108,116,86,105,101,119,41,38,38,110,46,116,111,112,33,61,61,110,38,38,40,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,63,110,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,117,110,108,111,97,100,34,44,111,101,44,33,49,41,58,110,46,97,116,116,97,99,104,69,118,101,110,116,38,38,110,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,117,110,108,111,97,100,34,44,111,101,41,41,44,100,46,97,116,116,114,105,98,117,116,101,115,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,78,97,109,101,61,34,105,34,44,33,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,78,97,109,101,34,41,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,97,112,112,101,110,100,67,104,105,108,100,40,67,46,99,114,101,97,116,101,67,111,109,109,101,110,116,40,34,34,41,41,44,33,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,42,34,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,61,75,46,116,101,115,116,40,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,41,44,100,46,103,101,116,66,121,73,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,100,61,107,44,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,124,124,33,67,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,107,41,46,108,101,110,103,116,104,125,41,44,100,46,103,101,116,66,121,73,100,63,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,41,61,61,61,116,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,114,101,116,117,114,110,32,110,63,91,110,93,58,91,93,125,125,41,58,40,98,46,102,105,108,116,101,114,46,73,68,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,59,114,101,116,117,114,110,32,116,38,38,116,46,118,97,108,117,101,61,61,61,110,125,125,44,98,46,102,105,110,100,46,73,68,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,38,38,69,41,123,118,97,114,32,110,44,114,44,105,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,101,41,59,105,102,40,111,41,123,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,59,105,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,78,97,109,101,40,101,41,44,114,61,48,59,119,104,105,108,101,40,111,61,105,91,114,43,43,93,41,105,102,40,40,110,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,34,105,100,34,41,41,38,38,110,46,118,97,108,117,101,61,61,61,101,41,114,101,116,117,114,110,91,111,93,125,114,101,116,117,114,110,91,93,125,125,41,44,98,46,102,105,110,100,46,84,65,71,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,58,100,46,113,115,97,63,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,58,118,111,105,100,32,48,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,48,44,111,61,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,101,41,59,105,102,40,34,42,34,61,61,61,101,41,123,119,104,105,108,101,40,110,61,111,91,105,43,43,93,41,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,114,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,111,125,44,98,46,102,105,110,100,46,67,76,65,83,83,61,100,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,38,38,69,41,114,101,116,117,114,110,32,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,67,108,97,115,115,78,97,109,101,40,101,41,125,44,115,61,91,93,44,118,61,91,93,44,40,100,46,113,115,97,61,75,46,116,101,115,116,40,67,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,41,41,38,38,40,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,105,100,61,39,34,43,107,43,34,39,62,60,47,97,62,60,115,101,108,101,99,116,32,105,100,61,39,34,43,107,43,34,45,92,114,92,92,39,32,109,115,97,108,108,111,119,99,97,112,116,117,114,101,61,39,39,62,60,111,112,116,105,111,110,32,115,101,108,101,99,116,101,100,61,39,39,62,60,47,111,112,116,105,111,110,62,60,47,115,101,108,101,99,116,62,34,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,109,115,97,108,108,111,119,99,97,112,116,117,114,101,94,61,39,39,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,91,42,94,36,93,61,34,43,77,43,34,42,40,63,58,39,39,124,92,34,92,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,115,101,108,101,99,116,101,100,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,92,92,91,34,43,77,43,34,42,40,63,58,118,97,108,117,101,124,34,43,82,43,34,41,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,105,100,126,61,34,43,107,43,34,45,93,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,126,61,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,99,104,101,99,107,101,100,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,58,99,104,101,99,107,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,97,35,34,43,107,43,34,43,42,34,41,46,108,101,110,103,116,104,124,124,118,46,112,117,115,104,40,34,46,35,46,43,91,43,126,93,34,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,39,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,47,97,62,60,115,101,108,101,99,116,32,100,105,115,97,98,108,101,100,61,39,100,105,115,97,98,108,101,100,39,62,60,111,112,116,105,111,110,47,62,60,47,115,101,108,101,99,116,62,34,59,118,97,114,32,116,61,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,59,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,104,105,100,100,101,110,34,41,44,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,68,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,91,110,97,109,101,61,100,93,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,110,97,109,101,34,43,77,43,34,42,91,42,94,36,124,33,126,93,63,61,34,41,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,101,110,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,97,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,46,100,105,115,97,98,108,101,100,61,33,48,44,50,33,61,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,58,100,105,115,97,98,108,101,100,34,41,46,108,101,110,103,116,104,38,38,118,46,112,117,115,104,40,34,58,101,110,97,98,108,101,100,34,44,34,58,100,105,115,97,98,108,101,100,34,41,44,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,44,58,120,34,41,44,118,46,112,117,115,104,40,34,44,46,42,58,34,41,125,41,41,44,40,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,75,46,116,101,115,116,40,99,61,97,46,109,97,116,99,104,101,115,124,124,97,46,119,101,98,107,105,116,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,111,122,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,111,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,124,124,97,46,109,115,77,97,116,99,104,101,115,83,101,108,101,99,116,111,114,41,41,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,61,99,46,99,97,108,108,40,101,44,34,42,34,41,44,99,46,99,97,108,108,40,101,44,34,91,115,33,61,39,39,93,58,120,34,41,44,115,46,112,117,115,104,40,34,33,61,34,44,36,41,125,41,44,118,61,118,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,118,46,106,111,105,110,40,34,124,34,41,41,44,115,61,115,46,108,101,110,103,116,104,38,38,110,101,119,32,82,101,103,69,120,112,40,115,46,106,111,105,110,40,34,124,34,41,41,44,116,61,75,46,116,101,115,116,40,97,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,41,44,121,61,116,124,124,75,46,116,101,115,116,40,97,46,99,111,110,116,97,105,110,115,41,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,101,44,114,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,101,61,61,61,114,124,124,33,40,33,114,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,33,40,110,46,99,111,110,116,97,105,110,115,63,110,46,99,111,110,116,97,105,110,115,40,114,41,58,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,38,38,49,54,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,114,41,41,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,119,104,105,108,101,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,116,61,61,61,101,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,68,61,116,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,61,33,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,45,33,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,59,114,101,116,117,114,110,32,110,124,124,40,49,38,40,110,61,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,61,61,61,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,41,63,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,116,41,58,49,41,124,124,33,100,46,115,111,114,116,68,101,116,97,99,104,101,100,38,38,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,61,61,61,110,63,101,61,61,61,67,124,124,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,101,41,63,45,49,58,116,61,61,61,67,124,124,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,109,38,38,121,40,109,44,116,41,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,58,52,38,110,63,45,49,58,49,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,32,108,61,33,48,44,48,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,112,97,114,101,110,116,78,111,100,101,44,111,61,116,46,112,97,114,101,110,116,78,111,100,101,44,97,61,91,101,93,44,115,61,91,116,93,59,105,102,40,33,105,124,124,33,111,41,114,101,116,117,114,110,32,101,61,61,61,67,63,45,49,58,116,61,61,61,67,63,49,58,105,63,45,49,58,111,63,49,58,117,63,80,40,117,44,101,41,45,80,40,117,44,116,41,58,48,59,105,102,40,105,61,61,61,111,41,114,101,116,117,114,110,32,112,101,40,101,44,116,41,59,110,61,101,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,97,46,117,110,115,104,105,102,116,40,110,41,59,110,61,116,59,119,104,105,108,101,40,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,115,46,117,110,115,104,105,102,116,40,110,41,59,119,104,105,108,101,40,97,91,114,93,61,61,61,115,91,114,93,41,114,43,43,59,114,101,116,117,114,110,32,114,63,112,101,40,97,91,114,93,44,115,91,114,93,41,58,97,91,114,93,61,61,61,109,63,45,49,58,115,91,114,93,61,61,61,109,63,49,58,48,125,41,44,67,125,44,115,101,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,115,101,40,101,44,110,117,108,108,44,110,117,108,108,44,116,41,125,44,115,101,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,38,38,69,38,38,33,65,91,116,43,34,32,34,93,38,38,40,33,115,124,124,33,115,46,116,101,115,116,40,116,41,41,38,38,40,33,118,124,124,33,118,46,116,101,115,116,40,116,41,41,41,116,114,121,123,118,97,114,32,110,61,99,46,99,97,108,108,40,101,44,116,41,59,105,102,40,110,124,124,100,46,100,105,115,99,111,110,110,101,99,116,101,100,77,97,116,99,104,124,124,101,46,100,111,99,117,109,101,110,116,38,38,49,49,33,61,61,101,46,100,111,99,117,109,101,110,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,110,125,99,97,116,99,104,40,101,41,123,65,40,116,44,33,48,41,125,114,101,116,117,114,110,32,48,60,115,101,40,116,44,67,44,110,117,108,108,44,91,101,93,41,46,108,101,110,103,116,104,125,44,115,101,46,99,111,110,116,97,105,110,115,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,44,121,40,101,44,116,41,125,44,115,101,46,97,116,116,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,101,41,33,61,61,67,38,38,84,40,101,41,59,118,97,114,32,110,61,98,46,97,116,116,114,72,97,110,100,108,101,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,44,114,61,110,38,38,106,46,99,97,108,108,40,98,46,97,116,116,114,72,97,110,100,108,101,44,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,110,40,101,44,116,44,33,69,41,58,118,111,105,100,32,48,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,114,63,114,58,100,46,97,116,116,114,105,98,117,116,101,115,124,124,33,69,63,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,44,115,101,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,40,101,43,34,34,41,46,114,101,112,108,97,99,101,40,114,101,44,105,101,41,125,44,115,101,46,101,114,114,111,114,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,83,121,110,116,97,120,32,101,114,114,111,114,44,32,117,110,114,101,99,111,103,110,105,122,101,100,32,101,120,112,114,101,115,115,105,111,110,58,32,34,43,101,41,125,44,115,101,46,117,110,105,113,117,101,83,111,114,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,91,93,44,114,61,48,44,105,61,48,59,105,102,40,108,61,33,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,44,117,61,33,100,46,115,111,114,116,83,116,97,98,108,101,38,38,101,46,115,108,105,99,101,40,48,41,44,101,46,115,111,114,116,40,68,41,44,108,41,123,119,104,105,108,101,40,116,61,101,91,105,43,43,93,41,116,61,61,61,101,91,105,93,38,38,40,114,61,110,46,112,117,115,104,40,105,41,41,59,119,104,105,108,101,40,114,45,45,41,101,46,115,112,108,105,99,101,40,110,91,114,93,44,49,41,125,114,101,116,117,114,110,32,117,61,110,117,108,108,44,101,125,44,111,61,115,101,46,103,101,116,84,101,120,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,34,34,44,114,61,48,44,105,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,105,41,123,105,102,40,49,61,61,61,105,124,124,57,61,61,61,105,124,124,49,49,61,61,61,105,41,123,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,116,101,120,116,67,111,110,116,101,110,116,41,114,101,116,117,114,110,32,101,46,116,101,120,116,67,111,110,116,101,110,116,59,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,110,43,61,111,40,101,41,125,101,108,115,101,32,105,102,40,51,61,61,61,105,124,124,52,61,61,61,105,41,114,101,116,117,114,110,32,101,46,110,111,100,101,86,97,108,117,101,125,101,108,115,101,32,119,104,105,108,101,40,116,61,101,91,114,43,43,93,41,110,43,61,111,40,116,41,59,114,101,116,117,114,110,32,110,125,44,40,98,61,115,101,46,115,101,108,101,99,116,111,114,115,61,123,99,97,99,104,101,76,101,110,103,116,104,58,53,48,44,99,114,101,97,116,101,80,115,101,117,100,111,58,108,101,44,109,97,116,99,104,58,71,44,97,116,116,114,72,97,110,100,108,101,58,123,125,44,102,105,110,100,58,123,125,44,114,101,108,97,116,105,118,101,58,123,34,62,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,44,102,105,114,115,116,58,33,48,125,44,34,32,34,58,123,100,105,114,58,34,112,97,114,101,110,116,78,111,100,101,34,125,44,34,43,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,102,105,114,115,116,58,33,48,125,44,34,126,34,58,123,100,105,114,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,125,125,44,112,114,101,70,105,108,116,101,114,58,123,65,84,84,82,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,91,51,93,61,40,101,91,51,93,124,124,101,91,52,93,124,124,101,91,53,93,124,124,34,34,41,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,34,126,61,34,61,61,61,101,91,50,93,38,38,40,101,91,51,93,61,34,32,34,43,101,91,51,93,43,34,32,34,41,44,101,46,115,108,105,99,101,40,48,44,52,41,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,49,93,61,101,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,110,116,104,34,61,61,61,101,91,49,93,46,115,108,105,99,101,40,48,44,51,41,63,40,101,91,51,93,124,124,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,91,52,93,61,43,40,101,91,52,93,63,101,91,53,93,43,40,101,91,54,93,124,124,49,41,58,50,42,40,34,101,118,101,110,34,61,61,61,101,91,51,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,44,101,91,53,93,61,43,40,101,91,55,93,43,101,91,56,93,124,124,34,111,100,100,34,61,61,61,101,91,51,93,41,41,58,101,91,51,93,38,38,115,101,46,101,114,114,111,114,40,101,91,48,93,41,44,101,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,33,101,91,54,93,38,38,101,91,50,93,59,114,101,116,117,114,110,32,71,46,67,72,73,76,68,46,116,101,115,116,40,101,91,48,93,41,63,110,117,108,108,58,40,101,91,51,93,63,101,91,50,93,61,101,91,52,93,124,124,101,91,53,93,124,124,34,34,58,110,38,38,88,46,116,101,115,116,40,110,41,38,38,40,116,61,104,40,110,44,33,48,41,41,38,38,40,116,61,110,46,105,110,100,101,120,79,102,40,34,41,34,44,110,46,108,101,110,103,116,104,45,116,41,45,110,46,108,101,110,103,116,104,41,38,38,40,101,91,48,93,61,101,91,48,93,46,115,108,105,99,101,40,48,44,116,41,44,101,91,50,93,61,110,46,115,108,105,99,101,40,48,44,116,41,41,44,101,46,115,108,105,99,101,40,48,44,51,41,41,125,125,44,102,105,108,116,101,114,58,123,84,65,71,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,42,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,48,125,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,125,125,44,67,76,65,83,83,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,112,91,101,43,34,32,34,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,34,43,77,43,34,41,34,43,101,43,34,40,34,43,77,43,34,124,36,41,34,41,41,38,38,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,99,108,97,115,115,78,97,109,101,38,38,101,46,99,108,97,115,115,78,97,109,101,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,41,125,41,125,44,65,84,84,82,58,102,117,110,99,116,105,111,110,40,110,44,114,44,105,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,115,101,46,97,116,116,114,40,101,44,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,34,33,61,34,61,61,61,114,58,33,114,124,124,40,116,43,61,34,34,44,34,61,34,61,61,61,114,63,116,61,61,61,105,58,34,33,61,34,61,61,61,114,63,116,33,61,61,105,58,34,94,61,34,61,61,61,114,63,105,38,38,48,61,61,61,116,46,105,110,100,101,120,79,102,40,105,41,58,34,42,61,34,61,61,61,114,63,105,38,38,45,49,60,116,46,105,110,100,101,120,79,102,40,105,41,58,34,36,61,34,61,61,61,114,63,105,38,38,116,46,115,108,105,99,101,40,45,105,46,108,101,110,103,116,104,41,61,61,61,105,58,34,126,61,34,61,61,61,114,63,45,49,60,40,34,32,34,43,116,46,114,101,112,108,97,99,101,40,70,44,34,32,34,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,105,41,58,34,124,61,34,61,61,61,114,38,38,40,116,61,61,61,105,124,124,116,46,115,108,105,99,101,40,48,44,105,46,108,101,110,103,116,104,43,49,41,61,61,61,105,43,34,45,34,41,41,125,125,44,67,72,73,76,68,58,102,117,110,99,116,105,111,110,40,104,44,101,44,116,44,103,44,118,41,123,118,97,114,32,121,61,34,110,116,104,34,33,61,61,104,46,115,108,105,99,101,40,48,44,51,41,44,109,61,34,108,97,115,116,34,33,61,61,104,46,115,108,105,99,101,40,45,52,41,44,120,61,34,111,102,45,116,121,112,101,34,61,61,61,101,59,114,101,116,117,114,110,32,49,61,61,61,103,38,38,48,61,61,61,118,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,101,46,112,97,114,101,110,116,78,111,100,101,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,121,33,61,61,109,63,34,110,101,120,116,83,105,98,108,105,110,103,34,58,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,99,61,101,46,112,97,114,101,110,116,78,111,100,101,44,102,61,120,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,112,61,33,110,38,38,33,120,44,100,61,33,49,59,105,102,40,99,41,123,105,102,40,121,41,123,119,104,105,108,101,40,108,41,123,97,61,101,59,119,104,105,108,101,40,97,61,97,91,108,93,41,105,102,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,33,49,59,117,61,108,61,34,111,110,108,121,34,61,61,61,104,38,38,33,117,38,38,34,110,101,120,116,83,105,98,108,105,110,103,34,125,114,101,116,117,114,110,33,48,125,105,102,40,117,61,91,109,63,99,46,102,105,114,115,116,67,104,105,108,100,58,99,46,108,97,115,116,67,104,105,108,100,93,44,109,38,38,112,41,123,100,61,40,115,61,40,114,61,40,105,61,40,111,61,40,97,61,99,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,38,38,114,91,50,93,44,97,61,115,38,38,99,46,99,104,105,108,100,78,111,100,101,115,91,115,93,59,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,49,61,61,61,97,46,110,111,100,101,84,121,112,101,38,38,43,43,100,38,38,97,61,61,61,101,41,123,105,91,104,93,61,91,83,44,115,44,100,93,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,112,38,38,40,100,61,115,61,40,114,61,40,105,61,40,111,61,40,97,61,101,41,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,124,124,91,93,41,91,48,93,61,61,61,83,38,38,114,91,49,93,41,44,33,49,61,61,61,100,41,119,104,105,108,101,40,97,61,43,43,115,38,38,97,38,38,97,91,108,93,124,124,40,100,61,115,61,48,41,124,124,117,46,112,111,112,40,41,41,105,102,40,40,120,63,97,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,102,58,49,61,61,61,97,46,110,111,100,101,84,121,112,101,41,38,38,43,43,100,38,38,40,112,38,38,40,40,105,61,40,111,61,97,91,107,93,124,124,40,97,91,107,93,61,123,125,41,41,91,97,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,97,46,117,110,105,113,117,101,73,68,93,61,123,125,41,41,91,104,93,61,91,83,44,100,93,41,44,97,61,61,61,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,100,45,61,118,41,61,61,61,103,124,124,100,37,103,61,61,48,38,38,48,60,61,100,47,103,125,125,125,44,80,83,69,85,68,79,58,102,117,110,99,116,105,111,110,40,101,44,111,41,123,118,97,114,32,116,44,97,61,98,46,112,115,101,117,100,111,115,91,101,93,124,124,98,46,115,101,116,70,105,108,116,101,114,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,112,115,101,117,100,111,58,32,34,43,101,41,59,114,101,116,117,114,110,32,97,91,107,93,63,97,40,111,41,58,49,60,97,46,108,101,110,103,116,104,63,40,116,61,91,101,44,101,44,34,34,44,111,93,44,98,46,115,101,116,70,105,108,116,101,114,115,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,97,40,101,44,111,41,44,105,61,114,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,101,91,110,61,80,40,101,44,114,91,105,93,41,93,61,33,40,116,91,110,93,61,114,91,105,93,41,125,41,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,40,101,44,48,44,116,41,125,41,58,97,125,125,44,112,115,101,117,100,111,115,58,123,110,111,116,58,108,101,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,114,61,91,93,44,105,61,91,93,44,115,61,102,40,101,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,41,59,114,101,116,117,114,110,32,115,91,107,93,63,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,61,115,40,101,44,110,117,108,108,44,114,44,91,93,41,44,97,61,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,105,61,111,91,97,93,41,38,38,40,101,91,97,93,61,33,40,116,91,97,93,61,105,41,41,125,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,114,91,48,93,61,101,44,115,40,114,44,110,117,108,108,44,110,44,105,41,44,114,91,48,93,61,110,117,108,108,44,33,105,46,112,111,112,40,41,125,125,41,44,104,97,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,48,60,115,101,40,116,44,101,41,46,108,101,110,103,116,104,125,125,41,44,99,111,110,116,97,105,110,115,58,108,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,116,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,40,101,46,116,101,120,116,67,111,110,116,101,110,116,124,124,111,40,101,41,41,46,105,110,100,101,120,79,102,40,116,41,125,125,41,44,108,97,110,103,58,108,101,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,86,46,116,101,115,116,40,110,124,124,34,34,41,124,124,115,101,46,101,114,114,111,114,40,34,117,110,115,117,112,112,111,114,116,101,100,32,108,97,110,103,58,32,34,43,110,41,44,110,61,110,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,100,111,123,105,102,40,116,61,69,63,101,46,108,97,110,103,58,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,109,108,58,108,97,110,103,34,41,124,124,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,108,97,110,103,34,41,41,114,101,116,117,114,110,40,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,61,61,61,110,124,124,48,61,61,61,116,46,105,110,100,101,120,79,102,40,110,43,34,45,34,41,125,119,104,105,108,101,40,40,101,61,101,46,112,97,114,101,110,116,78,111,100,101,41,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,33,49,125,125,41,44,116,97,114,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,108,111,99,97,116,105,111,110,38,38,110,46,108,111,99,97,116,105,111,110,46,104,97,115,104,59,114,101,116,117,114,110,32,116,38,38,116,46,115,108,105,99,101,40,49,41,61,61,61,101,46,105,100,125,44,114,111,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,97,125,44,102,111,99,117,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,67,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,40,33,67,46,104,97,115,70,111,99,117,115,124,124,67,46,104,97,115,70,111,99,117,115,40,41,41,38,38,33,33,40,101,46,116,121,112,101,124,124,101,46,104,114,101,102,124,124,126,101,46,116,97,98,73,110,100,101,120,41,125,44,101,110,97,98,108,101,100,58,103,101,40,33,49,41,44,100,105,115,97,98,108,101,100,58,103,101,40,33,48,41,44,99,104,101,99,107,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,33,33,101,46,99,104,101,99,107,101,100,124,124,34,111,112,116,105,111,110,34,61,61,61,116,38,38,33,33,101,46,115,101,108,101,99,116,101,100,125,44,115,101,108,101,99,116,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,97,114,101,110,116,78,111,100,101,38,38,101,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,33,48,61,61,61,101,46,115,101,108,101,99,116,101,100,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,101,61,101,46,102,105,114,115,116,67,104,105,108,100,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,105,102,40,101,46,110,111,100,101,84,121,112,101,60,54,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,44,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,98,46,112,115,101,117,100,111,115,46,101,109,112,116,121,40,101,41,125,44,104,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,105,110,112,117,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,81,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,125,44,98,117,116,116,111,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,116,38,38,34,98,117,116,116,111,110,34,61,61,61,101,46,116,121,112,101,124,124,34,98,117,116,116,111,110,34,61,61,61,116,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,38,38,34,116,101,120,116,34,61,61,61,101,46,116,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,124,124,34,116,101,120,116,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,44,102,105,114,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,48,93,125,41,44,108,97,115,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,91,116,45,49,93,125,41,44,101,113,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,91,110,60,48,63,110,43,116,58,110,93,125,41,44,101,118,101,110,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,111,100,100,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,49,59,110,60,116,59,110,43,61,50,41,101,46,112,117,115,104,40,110,41,59,114,101,116,117,114,110,32,101,125,41,44,108,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,116,60,110,63,116,58,110,59,48,60,61,45,45,114,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,44,103,116,58,118,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,110,60,48,63,110,43,116,58,110,59,43,43,114,60,116,59,41,101,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,101,125,41,125,125,41,46,112,115,101,117,100,111,115,46,110,116,104,61,98,46,112,115,101,117,100,111,115,46,101,113,44,123,114,97,100,105,111,58,33,48,44,99,104,101,99,107,98,111,120,58,33,48,44,102,105,108,101,58,33,48,44,112,97,115,115,119,111,114,100,58,33,48,44,105,109,97,103,101,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,100,101,40,101,41,59,102,111,114,40,101,32,105,110,123,115,117,98,109,105,116,58,33,48,44,114,101,115,101,116,58,33,48,125,41,98,46,112,115,101,117,100,111,115,91,101,93,61,104,101,40,101,41,59,102,117,110,99,116,105,111,110,32,109,101,40,41,123,125,102,117,110,99,116,105,111,110,32,120,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,44,114,61,34,34,59,116,60,110,59,116,43,43,41,114,43,61,101,91,116,93,46,118,97,108,117,101,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,98,101,40,115,44,101,44,116,41,123,118,97,114,32,117,61,101,46,100,105,114,44,108,61,101,46,110,101,120,116,44,99,61,108,124,124,117,44,102,61,116,38,38,34,112,97,114,101,110,116,78,111,100,101,34,61,61,61,99,44,112,61,114,43,43,59,114,101,116,117,114,110,32,101,46,102,105,114,115,116,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,114,101,116,117,114,110,32,115,40,101,44,116,44,110,41,59,114,101,116,117,114,110,33,49,125,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,91,83,44,112,93,59,105,102,40,110,41,123,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,38,38,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,101,108,115,101,32,119,104,105,108,101,40,101,61,101,91,117,93,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,102,41,105,102,40,105,61,40,111,61,101,91,107,93,124,124,40,101,91,107,93,61,123,125,41,41,91,101,46,117,110,105,113,117,101,73,68,93,124,124,40,111,91,101,46,117,110,105,113,117,101,73,68,93,61,123,125,41,44,108,38,38,108,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,101,61,101,91,117,93,124,124,101,59,101,108,115,101,123,105,102,40,40,114,61,105,91,99,93,41,38,38,114,91,48,93,61,61,61,83,38,38,114,91,49,93,61,61,61,112,41,114,101,116,117,114,110,32,97,91,50,93,61,114,91,50,93,59,105,102,40,40,105,91,99,93,61,97,41,91,50,93,61,115,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,48,125,114,101,116,117,114,110,33,49,125,125,102,117,110,99,116,105,111,110,32,119,101,40,105,41,123,114,101,116,117,114,110,32,49,60,105,46,108,101,110,103,116,104,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,114,45,45,41,105,102,40,33,105,91,114,93,40,101,44,116,44,110,41,41,114,101,116,117,114,110,33,49,59,114,101,116,117,114,110,33,48,125,58,105,91,48,93,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,61,91,93,44,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,33,61,116,59,115,60,117,59,115,43,43,41,40,111,61,101,91,115,93,41,38,38,40,110,38,38,33,110,40,111,44,114,44,105,41,124,124,40,97,46,112,117,115,104,40,111,41,44,108,38,38,116,46,112,117,115,104,40,115,41,41,41,59,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,67,101,40,100,44,104,44,103,44,118,44,121,44,101,41,123,114,101,116,117,114,110,32,118,38,38,33,118,91,107,93,38,38,40,118,61,67,101,40,118,41,41,44,121,38,38,33,121,91,107,93,38,38,40,121,61,67,101,40,121,44,101,41,41,44,108,101,40,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,116,46,108,101,110,103,116,104,44,99,61,101,124,124,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,116,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,101,40,101,44,116,91,114,93,44,110,41,59,114,101,116,117,114,110,32,110,125,40,104,124,124,34,42,34,44,110,46,110,111,100,101,84,121,112,101,63,91,110,93,58,110,44,91,93,41,44,102,61,33,100,124,124,33,101,38,38,104,63,99,58,84,101,40,99,44,115,44,100,44,110,44,114,41,44,112,61,103,63,121,124,124,40,101,63,100,58,108,124,124,118,41,63,91,93,58,116,58,102,59,105,102,40,103,38,38,103,40,102,44,112,44,110,44,114,41,44,118,41,123,105,61,84,101,40,112,44,117,41,44,118,40,105,44,91,93,44,110,44,114,41,44,111,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,105,91,111,93,41,38,38,40,112,91,117,91,111,93,93,61,33,40,102,91,117,91,111,93,93,61,97,41,41,125,105,102,40,101,41,123,105,102,40,121,124,124,100,41,123,105,102,40,121,41,123,105,61,91,93,44,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,105,46,112,117,115,104,40,102,91,111,93,61,97,41,59,121,40,110,117,108,108,44,112,61,91,93,44,105,44,114,41,125,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,40,97,61,112,91,111,93,41,38,38,45,49,60,40,105,61,121,63,80,40,101,44,97,41,58,115,91,111,93,41,38,38,40,101,91,105,93,61,33,40,116,91,105,93,61,97,41,41,125,125,101,108,115,101,32,112,61,84,101,40,112,61,61,61,116,63,112,46,115,112,108,105,99,101,40,108,44,112,46,108,101,110,103,116,104,41,58,112,41,44,121,63,121,40,110,117,108,108,44,116,44,112,44,114,41,58,72,46,97,112,112,108,121,40,116,44,112,41,125,41,125,102,117,110,99,116,105,111,110,32,69,101,40,101,41,123,102,111,114,40,118,97,114,32,105,44,116,44,110,44,114,61,101,46,108,101,110,103,116,104,44,111,61,98,46,114,101,108,97,116,105,118,101,91,101,91,48,93,46,116,121,112,101,93,44,97,61,111,124,124,98,46,114,101,108,97,116,105,118,101,91,34,32,34,93,44,115,61,111,63,49,58,48,44,117,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,105,125,44,97,44,33,48,41,44,108,61,98,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,80,40,105,44,101,41,125,44,97,44,33,48,41,44,99,61,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,33,111,38,38,40,110,124,124,116,33,61,61,119,41,124,124,40,40,105,61,116,41,46,110,111,100,101,84,121,112,101,63,117,40,101,44,116,44,110,41,58,108,40,101,44,116,44,110,41,41,59,114,101,116,117,114,110,32,105,61,110,117,108,108,44,114,125,93,59,115,60,114,59,115,43,43,41,105,102,40,116,61,98,46,114,101,108,97,116,105,118,101,91,101,91,115,93,46,116,121,112,101,93,41,99,61,91,98,101,40,119,101,40,99,41,44,116,41,93,59,101,108,115,101,123,105,102,40,40,116,61,98,46,102,105,108,116,101,114,91,101,91,115,93,46,116,121,112,101,93,46,97,112,112,108,121,40,110,117,108,108,44,101,91,115,93,46,109,97,116,99,104,101,115,41,41,91,107,93,41,123,102,111,114,40,110,61,43,43,115,59,110,60,114,59,110,43,43,41,105,102,40,98,46,114,101,108,97,116,105,118,101,91,101,91,110,93,46,116,121,112,101,93,41,98,114,101,97,107,59,114,101,116,117,114,110,32,67,101,40,49,60,115,38,38,119,101,40,99,41,44,49,60,115,38,38,120,101,40,101,46,115,108,105,99,101,40,48,44,115,45,49,41,46,99,111,110,99,97,116,40,123,118,97,108,117,101,58,34,32,34,61,61,61,101,91,115,45,50,93,46,116,121,112,101,63,34,42,34,58,34,34,125,41,41,46,114,101,112,108,97,99,101,40,66,44,34,36,49,34,41,44,116,44,115,60,110,38,38,69,101,40,101,46,115,108,105,99,101,40,115,44,110,41,41,44,110,60,114,38,38,69,101,40,101,61,101,46,115,108,105,99,101,40,110,41,41,44,110,60,114,38,38,120,101,40,101,41,41,125,99,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,119,101,40,99,41,125,114,101,116,117,114,110,32,109,101,46,112,114,111,116,111,116,121,112,101,61,98,46,102,105,108,116,101,114,115,61,98,46,112,115,101,117,100,111,115,44,98,46,115,101,116,70,105,108,116,101,114,115,61,110,101,119,32,109,101,44,104,61,115,101,46,116,111,107,101,110,105,122,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,120,91,101,43,34,32,34,93,59,105,102,40,108,41,114,101,116,117,114,110,32,116,63,48,58,108,46,115,108,105,99,101,40,48,41,59,97,61,101,44,115,61,91,93,44,117,61,98,46,112,114,101,70,105,108,116,101,114,59,119,104,105,108,101,40,97,41,123,102,111,114,40,111,32,105,110,32,110,38,38,33,40,114,61,95,46,101,120,101,99,40,97,41,41,124,124,40,114,38,38,40,97,61,97,46,115,108,105,99,101,40,114,91,48,93,46,108,101,110,103,116,104,41,124,124,97,41,44,115,46,112,117,115,104,40,105,61,91,93,41,41,44,110,61,33,49,44,40,114,61,122,46,101,120,101,99,40,97,41,41,38,38,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,114,91,48,93,46,114,101,112,108,97,99,101,40,66,44,34,32,34,41,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,44,98,46,102,105,108,116,101,114,41,33,40,114,61,71,91,111,93,46,101,120,101,99,40,97,41,41,124,124,117,91,111,93,38,38,33,40,114,61,117,91,111,93,40,114,41,41,124,124,40,110,61,114,46,115,104,105,102,116,40,41,44,105,46,112,117,115,104,40,123,118,97,108,117,101,58,110,44,116,121,112,101,58,111,44,109,97,116,99,104,101,115,58,114,125,41,44,97,61,97,46,115,108,105,99,101,40,110,46,108,101,110,103,116,104,41,41,59,105,102,40,33,110,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,63,97,46,108,101,110,103,116,104,58,97,63,115,101,46,101,114,114,111,114,40,101,41,58,120,40,101,44,115,41,46,115,108,105,99,101,40,48,41,125,44,102,61,115,101,46,99,111,109,112,105,108,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,118,44,121,44,109,44,120,44,114,44,105,61,91,93,44,111,61,91,93,44,97,61,78,91,101,43,34,32,34,93,59,105,102,40,33,97,41,123,116,124,124,40,116,61,104,40,101,41,41,44,110,61,116,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,40,97,61,69,101,40,116,91,110,93,41,41,91,107,93,63,105,46,112,117,115,104,40,97,41,58,111,46,112,117,115,104,40,97,41,59,40,97,61,78,40,101,44,40,118,61,111,44,109,61,48,60,40,121,61,105,41,46,108,101,110,103,116,104,44,120,61,48,60,118,46,108,101,110,103,116,104,44,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,61,48,44,108,61,34,48,34,44,99,61,101,38,38,91,93,44,102,61,91,93,44,112,61,119,44,100,61,101,124,124,120,38,38,98,46,102,105,110,100,46,84,65,71,40,34,42,34,44,105,41,44,104,61,83,43,61,110,117,108,108,61,61,112,63,49,58,77,97,116,104,46,114,97,110,100,111,109,40,41,124,124,46,49,44,103,61,100,46,108,101,110,103,116,104,59,102,111,114,40,105,38,38,40,119,61,116,61,61,61,67,124,124,116,124,124,105,41,59,108,33,61,61,103,38,38,110,117,108,108,33,61,40,111,61,100,91,108,93,41,59,108,43,43,41,123,105,102,40,120,38,38,111,41,123,97,61,48,44,116,124,124,111,46,111,119,110,101,114,68,111,99,117,109,101,110,116,61,61,61,67,124,124,40,84,40,111,41,44,110,61,33,69,41,59,119,104,105,108,101,40,115,61,118,91,97,43,43,93,41,105,102,40,115,40,111,44,116,124,124,67,44,110,41,41,123,114,46,112,117,115,104,40,111,41,59,98,114,101,97,107,125,105,38,38,40,83,61,104,41,125,109,38,38,40,40,111,61,33,115,38,38,111,41,38,38,117,45,45,44,101,38,38,99,46,112,117,115,104,40,111,41,41,125,105,102,40,117,43,61,108,44,109,38,38,108,33,61,61,117,41,123,97,61,48,59,119,104,105,108,101,40,115,61,121,91,97,43,43,93,41,115,40,99,44,102,44,116,44,110,41,59,105,102,40,101,41,123,105,102,40,48,60,117,41,119,104,105,108,101,40,108,45,45,41,99,91,108,93,124,124,102,91,108,93,124,124,40,102,91,108,93,61,113,46,99,97,108,108,40,114,41,41,59,102,61,84,101,40,102,41,125,72,46,97,112,112,108,121,40,114,44,102,41,44,105,38,38,33,101,38,38,48,60,102,46,108,101,110,103,116,104,38,38,49,60,117,43,121,46,108,101,110,103,116,104,38,38,115,101,46,117,110,105,113,117,101,83,111,114,116,40,114,41,125,114,101,116,117,114,110,32,105,38,38,40,83,61,104,44,119,61,112,41,44,99,125,44,109,63,108,101,40,114,41,58,114,41,41,41,46,115,101,108,101,99,116,111,114,61,101,125,114,101,116,117,114,110,32,97,125,44,103,61,115,101,46,115,101,108,101,99,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,101,44,99,61,33,114,38,38,104,40,101,61,108,46,115,101,108,101,99,116,111,114,124,124,101,41,59,105,102,40,110,61,110,124,124,91,93,44,49,61,61,61,99,46,108,101,110,103,116,104,41,123,105,102,40,50,60,40,111,61,99,91,48,93,61,99,91,48,93,46,115,108,105,99,101,40,48,41,41,46,108,101,110,103,116,104,38,38,34,73,68,34,61,61,61,40,97,61,111,91,48,93,41,46,116,121,112,101,38,38,57,61,61,61,116,46,110,111,100,101,84,121,112,101,38,38,69,38,38,98,46,114,101,108,97,116,105,118,101,91,111,91,49,93,46,116,121,112,101,93,41,123,105,102,40,33,40,116,61,40,98,46,102,105,110,100,46,73,68,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,116,41,124,124,91,93,41,91,48,93,41,41,114,101,116,117,114,110,32,110,59,108,38,38,40,116,61,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,101,46,115,108,105,99,101,40,111,46,115,104,105,102,116,40,41,46,118,97,108,117,101,46,108,101,110,103,116,104,41,125,105,61,71,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,101,41,63,48,58,111,46,108,101,110,103,116,104,59,119,104,105,108,101,40,105,45,45,41,123,105,102,40,97,61,111,91,105,93,44,98,46,114,101,108,97,116,105,118,101,91,115,61,97,46,116,121,112,101,93,41,98,114,101,97,107,59,105,102,40,40,117,61,98,46,102,105,110,100,91,115,93,41,38,38,40,114,61,117,40,97,46,109,97,116,99,104,101,115,91,48,93,46,114,101,112,108,97,99,101,40,116,101,44,110,101,41,44,101,101,46,116,101,115,116,40,111,91,48,93,46,116,121,112,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,41,41,123,105,102,40,111,46,115,112,108,105,99,101,40,105,44,49,41,44,33,40,101,61,114,46,108,101,110,103,116,104,38,38,120,101,40,111,41,41,41,114,101,116,117,114,110,32,72,46,97,112,112,108,121,40,110,44,114,41,44,110,59,98,114,101,97,107,125,125,125,114,101,116,117,114,110,40,108,124,124,102,40,101,44,99,41,41,40,114,44,116,44,33,69,44,110,44,33,116,124,124,101,101,46,116,101,115,116,40,101,41,38,38,121,101,40,116,46,112,97,114,101,110,116,78,111,100,101,41,124,124,116,41,44,110,125,44,100,46,115,111,114,116,83,116,97,98,108,101,61,107,46,115,112,108,105,116,40,34,34,41,46,115,111,114,116,40,68,41,46,106,111,105,110,40,34,34,41,61,61,61,107,44,100,46,100,101,116,101,99,116,68,117,112,108,105,99,97,116,101,115,61,33,33,108,44,84,40,41,44,100,46,115,111,114,116,68,101,116,97,99,104,101,100,61,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,38,101,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,67,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,102,105,101,108,100,115,101,116,34,41,41,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,97,32,104,114,101,102,61,39,35,39,62,60,47,97,62,34,44,34,35,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,125,41,124,124,102,101,40,34,116,121,112,101,124,104,114,101,102,124,104,101,105,103,104,116,124,119,105,100,116,104,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,116,44,34,116,121,112,101,34,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,49,58,50,41,125,41,44,100,46,97,116,116,114,105,98,117,116,101,115,38,38,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,105,110,110,101,114,72,84,77,76,61,34,60,105,110,112,117,116,47,62,34,44,101,46,102,105,114,115,116,67,104,105,108,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,44,34,34,41,44,34,34,61,61,61,101,46,102,105,114,115,116,67,104,105,108,100,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,125,41,124,124,102,101,40,34,118,97,108,117,101,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,33,110,38,38,34,105,110,112,117,116,34,61,61,61,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,114,101,116,117,114,110,32,101,46,100,101,102,97,117,108,116,86,97,108,117,101,125,41,44,99,101,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,125,41,124,124,102,101,40,82,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,33,110,41,114,101,116,117,114,110,33,48,61,61,61,101,91,116,93,63,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,58,40,114,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,78,111,100,101,40,116,41,41,38,38,114,46,115,112,101,99,105,102,105,101,100,63,114,46,118,97,108,117,101,58,110,117,108,108,125,41,44,115,101,125,40,67,41,59,107,46,102,105,110,100,61,104,44,107,46,101,120,112,114,61,104,46,115,101,108,101,99,116,111,114,115,44,107,46,101,120,112,114,91,34,58,34,93,61,107,46,101,120,112,114,46,112,115,101,117,100,111,115,44,107,46,117,110,105,113,117,101,83,111,114,116,61,107,46,117,110,105,113,117,101,61,104,46,117,110,105,113,117,101,83,111,114,116,44,107,46,116,101,120,116,61,104,46,103,101,116,84,101,120,116,44,107,46,105,115,88,77,76,68,111,99,61,104,46,105,115,88,77,76,44,107,46,99,111,110,116,97,105,110,115,61,104,46,99,111,110,116,97,105,110,115,44,107,46,101,115,99,97,112,101,83,101,108,101,99,116,111,114,61,104,46,101,115,99,97,112,101,59,118,97,114,32,84,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,91,93,44,105,61,118,111,105,100,32,48,33,61,61,110,59,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,57,33,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,123,105,102,40,105,38,38,107,40,101,41,46,105,115,40,110,41,41,98,114,101,97,107,59,114,46,112,117,115,104,40,101,41,125,114,101,116,117,114,110,32,114,125,44,83,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,91,93,59,101,59,101,61,101,46,110,101,120,116,83,105,98,108,105,110,103,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,33,61,61,116,38,38,110,46,112,117,115,104,40,101,41,59,114,101,116,117,114,110,32,110,125,44,78,61,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,59,102,117,110,99,116,105,111,110,32,65,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,110,111,100,101,78,97,109,101,38,38,101,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,61,61,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,118,97,114,32,68,61,47,94,60,40,91,97,45,122,93,91,94,92,47,92,48,62,58,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,92,120,50,48,92,116,92,114,92,110,92,102,93,42,92,47,63,62,40,63,58,60,92,47,92,49,62,124,41,36,47,105,59,102,117,110,99,116,105,111,110,32,106,40,101,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,110,41,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,33,33,110,46,99,97,108,108,40,101,44,116,44,101,41,33,61,61,114,125,41,58,110,46,110,111,100,101,84,121,112,101,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,61,61,61,110,33,61,61,114,125,41,58,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,63,107,46,103,114,101,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,45,49,60,105,46,99,97,108,108,40,110,44,101,41,33,61,61,114,125,41,58,107,46,102,105,108,116,101,114,40,110,44,101,44,114,41,125,107,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,116,91,48,93,59,114,101,116,117,114,110,32,110,38,38,40,101,61,34,58,110,111,116,40,34,43,101,43,34,41,34,41,44,49,61,61,61,116,46,108,101,110,103,116,104,38,38,49,61,61,61,114,46,110,111,100,101,84,121,112,101,63,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,114,44,101,41,63,91,114,93,58,91,93,58,107,46,102,105,110,100,46,109,97,116,99,104,101,115,40,101,44,107,46,103,114,101,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,125,41,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,105,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,116,104,105,115,46,108,101,110,103,116,104,44,105,61,116,104,105,115,59,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,40,101,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,116,61,48,59,116,60,114,59,116,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,105,91,116,93,44,116,104,105,115,41,41,114,101,116,117,114,110,33,48,125,41,41,59,102,111,114,40,110,61,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,91,93,41,44,116,61,48,59,116,60,114,59,116,43,43,41,107,46,102,105,110,100,40,101,44,105,91,116,93,44,110,41,59,114,101,116,117,114,110,32,49,60,114,63,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,58,110,125,44,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,49,41,41,125,44,110,111,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,106,40,116,104,105,115,44,101,124,124,91,93,44,33,48,41,41,125,44,105,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,106,40,116,104,105,115,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,78,46,116,101,115,116,40,101,41,63,107,40,101,41,58,101,124,124,91,93,44,33,49,41,46,108,101,110,103,116,104,125,125,41,59,118,97,114,32,113,44,76,61,47,94,40,63,58,92,115,42,40,60,91,92,119,92,87,93,43,62,41,91,94,62,93,42,124,35,40,91,92,119,45,93,43,41,41,36,47,59,40,107,46,102,110,46,105,110,105,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,33,101,41,114,101,116,117,114,110,32,116,104,105,115,59,105,102,40,110,61,110,124,124,113,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,33,40,114,61,34,60,34,61,61,61,101,91,48,93,38,38,34,62,34,61,61,61,101,91,101,46,108,101,110,103,116,104,45,49,93,38,38,51,60,61,101,46,108,101,110,103,116,104,63,91,110,117,108,108,44,101,44,110,117,108,108,93,58,76,46,101,120,101,99,40,101,41,41,124,124,33,114,91,49,93,38,38,116,41,114,101,116,117,114,110,33,116,124,124,116,46,106,113,117,101,114,121,63,40,116,124,124,110,41,46,102,105,110,100,40,101,41,58,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,46,102,105,110,100,40,101,41,59,105,102,40,114,91,49,93,41,123,105,102,40,116,61,116,32,105,110,115,116,97,110,99,101,111,102,32,107,63,116,91,48,93,58,116,44,107,46,109,101,114,103,101,40,116,104,105,115,44,107,46,112,97,114,115,101,72,84,77,76,40,114,91,49,93,44,116,38,38,116,46,110,111,100,101,84,121,112,101,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,58,69,44,33,48,41,41,44,68,46,116,101,115,116,40,114,91,49,93,41,38,38,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,116,41,41,102,111,114,40,114,32,105,110,32,116,41,109,40,116,104,105,115,91,114,93,41,63,116,104,105,115,91,114,93,40,116,91,114,93,41,58,116,104,105,115,46,97,116,116,114,40,114,44,116,91,114,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,40,105,61,69,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,114,91,50,93,41,41,38,38,40,116,104,105,115,91,48,93,61,105,44,116,104,105,115,46,108,101,110,103,116,104,61,49,41,44,116,104,105,115,125,114,101,116,117,114,110,32,101,46,110,111,100,101,84,121,112,101,63,40,116,104,105,115,91,48,93,61,101,44,116,104,105,115,46,108,101,110,103,116,104,61,49,44,116,104,105,115,41,58,109,40,101,41,63,118,111,105,100,32,48,33,61,61,110,46,114,101,97,100,121,63,110,46,114,101,97,100,121,40,101,41,58,101,40,107,41,58,107,46,109,97,107,101,65,114,114,97,121,40,101,44,116,104,105,115,41,125,41,46,112,114,111,116,111,116,121,112,101,61,107,46,102,110,44,113,61,107,40,69,41,59,118,97,114,32,72,61,47,94,40,63,58,112,97,114,101,110,116,115,124,112,114,101,118,40,63,58,85,110,116,105,108,124,65,108,108,41,41,47,44,79,61,123,99,104,105,108,100,114,101,110,58,33,48,44,99,111,110,116,101,110,116,115,58,33,48,44,110,101,120,116,58,33,48,44,112,114,101,118,58,33,48,125,59,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,119,104,105,108,101,40,40,101,61,101,91,116,93,41,38,38,49,33,61,61,101,46,110,111,100,101,84,121,112,101,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,40,101,44,116,104,105,115,41,44,110,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,110,59,101,43,43,41,105,102,40,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,116,91,101,93,41,41,114,101,116,117,114,110,33,48,125,41,125,44,99,108,111,115,101,115,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,104,105,115,46,108,101,110,103,116,104,44,111,61,91,93,44,97,61,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,107,40,101,41,59,105,102,40,33,78,46,116,101,115,116,40,101,41,41,102,111,114,40,59,114,60,105,59,114,43,43,41,102,111,114,40,110,61,116,104,105,115,91,114,93,59,110,38,38,110,33,61,61,116,59,110,61,110,46,112,97,114,101,110,116,78,111,100,101,41,105,102,40,110,46,110,111,100,101,84,121,112,101,60,49,49,38,38,40,97,63,45,49,60,97,46,105,110,100,101,120,40,110,41,58,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,110,44,101,41,41,41,123,111,46,112,117,115,104,40,110,41,59,98,114,101,97,107,125,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,49,60,111,46,108,101,110,103,116,104,63,107,46,117,110,105,113,117,101,83,111,114,116,40,111,41,58,111,41,125,44,105,110,100,101,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,105,46,99,97,108,108,40,107,40,101,41,44,116,104,105,115,91,48,93,41,58,105,46,99,97,108,108,40,116,104,105,115,44,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,41,58,116,104,105,115,91,48,93,38,38,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,63,116,104,105,115,46,102,105,114,115,116,40,41,46,112,114,101,118,65,108,108,40,41,46,108,101,110,103,116,104,58,45,49,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,107,46,117,110,105,113,117,101,83,111,114,116,40,107,46,109,101,114,103,101,40,116,104,105,115,46,103,101,116,40,41,44,107,40,101,44,116,41,41,41,41,125,44,97,100,100,66,97,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,100,100,40,110,117,108,108,61,61,101,63,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,58,116,104,105,115,46,112,114,101,118,79,98,106,101,99,116,46,102,105,108,116,101,114,40,101,41,41,125,125,41,44,107,46,101,97,99,104,40,123,112,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,110,117,108,108,125,44,112,97,114,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,41,125,44,112,97,114,101,110,116,115,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,97,114,101,110,116,78,111,100,101,34,44,110,41,125,44,110,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,80,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,41,125,44,112,114,101,118,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,41,125,44,110,101,120,116,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,110,101,120,116,83,105,98,108,105,110,103,34,44,110,41,125,44,112,114,101,118,85,110,116,105,108,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,84,40,101,44,34,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,34,44,110,41,125,44,115,105,98,108,105,110,103,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,40,101,46,112,97,114,101,110,116,78,111,100,101,124,124,123,125,41,46,102,105,114,115,116,67,104,105,108,100,44,101,41,125,44,99,104,105,108,100,114,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,83,40,101,46,102,105,114,115,116,67,104,105,108,100,41,125,44,99,111,110,116,101,110,116,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,63,101,46,99,111,110,116,101,110,116,68,111,99,117,109,101,110,116,58,40,65,40,101,44,34,116,101,109,112,108,97,116,101,34,41,38,38,40,101,61,101,46,99,111,110,116,101,110,116,124,124,101,41,44,107,46,109,101,114,103,101,40,91,93,44,101,46,99,104,105,108,100,78,111,100,101,115,41,41,125,125,44,102,117,110,99,116,105,111,110,40,114,44,105,41,123,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,109,97,112,40,116,104,105,115,44,105,44,101,41,59,114,101,116,117,114,110,34,85,110,116,105,108,34,33,61,61,114,46,115,108,105,99,101,40,45,53,41,38,38,40,116,61,101,41,44,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,107,46,102,105,108,116,101,114,40,116,44,110,41,41,44,49,60,116,104,105,115,46,108,101,110,103,116,104,38,38,40,79,91,114,93,124,124,107,46,117,110,105,113,117,101,83,111,114,116,40,110,41,44,72,46,116,101,115,116,40,114,41,38,38,110,46,114,101,118,101,114,115,101,40,41,41,44,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,82,61,47,91,94,92,120,50,48,92,116,92,114,92,110,92,102,93,43,47,103,59,102,117,110,99,116,105,111,110,32,77,40,101,41,123,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,116,104,114,111,119,32,101,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,59,116,114,121,123,101,38,38,109,40,105,61,101,46,112,114,111,109,105,115,101,41,63,105,46,99,97,108,108,40,101,41,46,100,111,110,101,40,116,41,46,102,97,105,108,40,110,41,58,101,38,38,109,40,105,61,101,46,116,104,101,110,41,63,105,46,99,97,108,108,40,101,44,116,44,110,41,58,116,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,46,115,108,105,99,101,40,114,41,41,125,99,97,116,99,104,40,101,41,123,110,46,97,112,112,108,121,40,118,111,105,100,32,48,44,91,101,93,41,125,125,107,46,67,97,108,108,98,97,99,107,115,61,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,44,110,59,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,114,63,40,101,61,114,44,110,61,123,125,44,107,46,101,97,99,104,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,91,116,93,61,33,48,125,41,44,110,41,58,107,46,101,120,116,101,110,100,40,123,125,44,114,41,59,118,97,114,32,105,44,116,44,111,44,97,44,115,61,91,93,44,117,61,91,93,44,108,61,45,49,44,99,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,97,61,97,124,124,114,46,111,110,99,101,44,111,61,105,61,33,48,59,117,46,108,101,110,103,116,104,59,108,61,45,49,41,123,116,61,117,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,43,43,108,60,115,46,108,101,110,103,116,104,41,33,49,61,61,61,115,91,108,93,46,97,112,112,108,121,40,116,91,48,93,44,116,91,49,93,41,38,38,114,46,115,116,111,112,79,110,70,97,108,115,101,38,38,40,108,61,115,46,108,101,110,103,116,104,44,116,61,33,49,41,125,114,46,109,101,109,111,114,121,124,124,40,116,61,33,49,41,44,105,61,33,49,44,97,38,38,40,115,61,116,63,91,93,58,34,34,41,125,44,102,61,123,97,100,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,116,38,38,33,105,38,38,40,108,61,115,46,108,101,110,103,116,104,45,49,44,117,46,112,117,115,104,40,116,41,41,44,102,117,110,99,116,105,111,110,32,110,40,101,41,123,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,116,41,63,114,46,117,110,105,113,117,101,38,38,102,46,104,97,115,40,116,41,124,124,115,46,112,117,115,104,40,116,41,58,116,38,38,116,46,108,101,110,103,116,104,38,38,34,115,116,114,105,110,103,34,33,61,61,119,40,116,41,38,38,110,40,116,41,125,41,125,40,97,114,103,117,109,101,110,116,115,41,44,116,38,38,33,105,38,38,99,40,41,41,44,116,104,105,115,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,101,97,99,104,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,59,119,104,105,108,101,40,45,49,60,40,110,61,107,46,105,110,65,114,114,97,121,40,116,44,115,44,110,41,41,41,115,46,115,112,108,105,99,101,40,110,44,49,41,44,110,60,61,108,38,38,108,45,45,125,41,44,116,104,105,115,125,44,104,97,115,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,63,45,49,60,107,46,105,110,65,114,114,97,121,40,101,44,115,41,58,48,60,115,46,108,101,110,103,116,104,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,38,38,40,115,61,91,93,41,44,116,104,105,115,125,44,100,105,115,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,115,61,116,61,34,34,44,116,104,105,115,125,44,100,105,115,97,98,108,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,115,125,44,108,111,99,107,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,61,117,61,91,93,44,116,124,124,105,124,124,40,115,61,116,61,34,34,41,44,116,104,105,115,125,44,108,111,99,107,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,97,125,44,102,105,114,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,97,124,124,40,116,61,91,101,44,40,116,61,116,124,124,91,93,41,46,115,108,105,99,101,63,116,46,115,108,105,99,101,40,41,58,116,93,44,117,46,112,117,115,104,40,116,41,44,105,124,124,99,40,41,41,44,116,104,105,115,125,44,102,105,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,46,102,105,114,101,87,105,116,104,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,102,105,114,101,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,33,111,125,125,59,114,101,116,117,114,110,32,102,125,44,107,46,101,120,116,101,110,100,40,123,68,101,102,101,114,114,101,100,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,111,61,91,91,34,110,111,116,105,102,121,34,44,34,112,114,111,103,114,101,115,115,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,109,101,109,111,114,121,34,41,44,50,93,44,91,34,114,101,115,111,108,118,101,34,44,34,100,111,110,101,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,48,44,34,114,101,115,111,108,118,101,100,34,93,44,91,34,114,101,106,101,99,116,34,44,34,102,97,105,108,34,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,49,44,34,114,101,106,101,99,116,101,100,34,93,93,44,105,61,34,112,101,110,100,105,110,103,34,44,97,61,123,115,116,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,125,44,97,108,119,97,121,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,46,100,111,110,101,40,97,114,103,117,109,101,110,116,115,41,46,102,97,105,108,40,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,34,99,97,116,99,104,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,112,105,112,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,97,114,103,117,109,101,110,116,115,59,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,114,41,123,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,105,91,116,91,52,93,93,41,38,38,105,91,116,91,52,93,93,59,115,91,116,91,49,93,93,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,38,38,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,101,38,38,109,40,101,46,112,114,111,109,105,115,101,41,63,101,46,112,114,111,109,105,115,101,40,41,46,112,114,111,103,114,101,115,115,40,114,46,110,111,116,105,102,121,41,46,100,111,110,101,40,114,46,114,101,115,111,108,118,101,41,46,102,97,105,108,40,114,46,114,101,106,101,99,116,41,58,114,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,44,110,63,91,101,93,58,97,114,103,117,109,101,110,116,115,41,125,41,125,41,44,105,61,110,117,108,108,125,41,46,112,114,111,109,105,115,101,40,41,125,44,116,104,101,110,58,102,117,110,99,116,105,111,110,40,116,44,110,44,114,41,123,118,97,114,32,117,61,48,59,102,117,110,99,116,105,111,110,32,108,40,105,44,111,44,97,44,115,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,44,114,61,97,114,103,117,109,101,110,116,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,59,105,102,40,33,40,105,60,117,41,41,123,105,102,40,40,101,61,97,46,97,112,112,108,121,40,110,44,114,41,41,61,61,61,111,46,112,114,111,109,105,115,101,40,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,104,101,110,97,98,108,101,32,115,101,108,102,45,114,101,115,111,108,117,116,105,111,110,34,41,59,116,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,38,38,101,46,116,104,101,110,44,109,40,116,41,63,115,63,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,41,58,40,117,43,43,44,116,46,99,97,108,108,40,101,44,108,40,117,44,111,44,77,44,115,41,44,108,40,117,44,111,44,73,44,115,41,44,108,40,117,44,111,44,77,44,111,46,110,111,116,105,102,121,87,105,116,104,41,41,41,58,40,97,33,61,61,77,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,40,115,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,41,40,110,44,114,41,41,125,125,44,116,61,115,63,101,58,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,101,40,41,125,99,97,116,99,104,40,101,41,123,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,38,38,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,40,101,44,116,46,115,116,97,99,107,84,114,97,99,101,41,44,117,60,61,105,43,49,38,38,40,97,33,61,61,73,38,38,40,110,61,118,111,105,100,32,48,44,114,61,91,101,93,41,44,111,46,114,101,106,101,99,116,87,105,116,104,40,110,44,114,41,41,125,125,59,105,63,116,40,41,58,40,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,38,38,40,116,46,115,116,97,99,107,84,114,97,99,101,61,107,46,68,101,102,101,114,114,101,100,46,103,101,116,83,116,97,99,107,72,111,111,107,40,41,41,44,67,46,115,101,116,84,105,109,101,111,117,116,40,116,41,41,125,125,114,101,116,117,114,110,32,107,46,68,101,102,101,114,114,101,100,40,102,117,110,99,116,105,111,110,40,101,41,123,111,91,48,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,114,41,63,114,58,77,44,101,46,110,111,116,105,102,121,87,105,116,104,41,41,44,111,91,49,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,116,41,63,116,58,77,41,41,44,111,91,50,93,91,51,93,46,97,100,100,40,108,40,48,44,101,44,109,40,110,41,63,110,58,73,41,41,125,41,46,112,114,111,109,105,115,101,40,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,101,63,107,46,101,120,116,101,110,100,40,101,44,97,41,58,97,125,125,44,115,61,123,125,59,114,101,116,117,114,110,32,107,46,101,97,99,104,40,111,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,91,50,93,44,114,61,116,91,53,93,59,97,91,116,91,49,93,93,61,110,46,97,100,100,44,114,38,38,110,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,105,61,114,125,44,111,91,51,45,101,93,91,50,93,46,100,105,115,97,98,108,101,44,111,91,51,45,101,93,91,51,93,46,100,105,115,97,98,108,101,44,111,91,48,93,91,50,93,46,108,111,99,107,44,111,91,48,93,91,51,93,46,108,111,99,107,41,44,110,46,97,100,100,40,116,91,51,93,46,102,105,114,101,41,44,115,91,116,91,48,93,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,91,116,91,48,93,43,34,87,105,116,104,34,93,40,116,104,105,115,61,61,61,115,63,118,111,105,100,32,48,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,116,104,105,115,125,44,115,91,116,91,48,93,43,34,87,105,116,104,34,93,61,110,46,102,105,114,101,87,105,116,104,125,41,44,97,46,112,114,111,109,105,115,101,40,115,41,44,101,38,38,101,46,99,97,108,108,40,115,44,115,41,44,115,125,44,119,104,101,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,116,61,110,44,114,61,65,114,114,97,121,40,116,41,44,105,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,111,61,107,46,68,101,102,101,114,114,101,100,40,41,44,97,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,41,123,114,91,116,93,61,116,104,105,115,44,105,91,116,93,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,58,101,44,45,45,110,124,124,111,46,114,101,115,111,108,118,101,87,105,116,104,40,114,44,105,41,125,125,59,105,102,40,110,60,61,49,38,38,40,87,40,101,44,111,46,100,111,110,101,40,97,40,116,41,41,46,114,101,115,111,108,118,101,44,111,46,114,101,106,101,99,116,44,33,110,41,44,34,112,101,110,100,105,110,103,34,61,61,61,111,46,115,116,97,116,101,40,41,124,124,109,40,105,91,116,93,38,38,105,91,116,93,46,116,104,101,110,41,41,41,114,101,116,117,114,110,32,111,46,116,104,101,110,40,41,59,119,104,105,108,101,40,116,45,45,41,87,40,105,91,116,93,44,97,40,116,41,44,111,46,114,101,106,101,99,116,41,59,114,101,116,117,114,110,32,111,46,112,114,111,109,105,115,101,40,41,125,125,41,59,118,97,114,32,36,61,47,94,40,69,118,97,108,124,73,110,116,101,114,110,97,108,124,82,97,110,103,101,124,82,101,102,101,114,101,110,99,101,124,83,121,110,116,97,120,124,84,121,112,101,124,85,82,73,41,69,114,114,111,114,36,47,59,107,46,68,101,102,101,114,114,101,100,46,101,120,99,101,112,116,105,111,110,72,111,111,107,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,67,46,99,111,110,115,111,108,101,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,38,38,101,38,38,36,46,116,101,115,116,40,101,46,110,97,109,101,41,38,38,67,46,99,111,110,115,111,108,101,46,119,97,114,110,40,34,106,81,117,101,114,121,46,68,101,102,101,114,114,101,100,32,101,120,99,101,112,116,105,111,110,58,32,34,43,101,46,109,101,115,115,97,103,101,44,101,46,115,116,97,99,107,44,116,41,125,44,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,61,102,117,110,99,116,105,111,110,40,101,41,123,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,101,125,41,125,59,118,97,114,32,70,61,107,46,68,101,102,101,114,114,101,100,40,41,59,102,117,110,99,116,105,111,110,32,66,40,41,123,69,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,44,107,46,114,101,97,100,121,40,41,125,107,46,102,110,46,114,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,70,46,116,104,101,110,40,101,41,91,34,99,97,116,99,104,34,93,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,114,101,97,100,121,69,120,99,101,112,116,105,111,110,40,101,41,125,41,44,116,104,105,115,125,44,107,46,101,120,116,101,110,100,40,123,105,115,82,101,97,100,121,58,33,49,44,114,101,97,100,121,87,97,105,116,58,49,44,114,101,97,100,121,58,102,117,110,99,116,105,111,110,40,101,41,123,40,33,48,61,61,61,101,63,45,45,107,46,114,101,97,100,121,87,97,105,116,58,107,46,105,115,82,101,97,100,121,41,124,124,40,107,46,105,115,82,101,97,100,121,61,33,48,41,33,61,61,101,38,38,48,60,45,45,107,46,114,101,97,100,121,87,97,105,116,124,124,70,46,114,101,115,111,108,118,101,87,105,116,104,40,69,44,91,107,93,41,125,125,41,44,107,46,114,101,97,100,121,46,116,104,101,110,61,70,46,116,104,101,110,44,34,99,111,109,112,108,101,116,101,34,61,61,61,69,46,114,101,97,100,121,83,116,97,116,101,124,124,34,108,111,97,100,105,110,103,34,33,61,61,69,46,114,101,97,100,121,83,116,97,116,101,38,38,33,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,100,111,83,99,114,111,108,108,63,67,46,115,101,116,84,105,109,101,111,117,116,40,107,46,114,101,97,100,121,41,58,40,69,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,68,79,77,67,111,110,116,101,110,116,76,111,97,100,101,100,34,44,66,41,44,67,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,66,41,41,59,118,97,114,32,95,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,44,97,41,123,118,97,114,32,115,61,48,44,117,61,101,46,108,101,110,103,116,104,44,108,61,110,117,108,108,61,61,110,59,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,110,41,41,102,111,114,40,115,32,105,110,32,105,61,33,48,44,110,41,95,40,101,44,116,44,115,44,110,91,115,93,44,33,48,44,111,44,97,41,59,101,108,115,101,32,105,102,40,118,111,105,100,32,48,33,61,61,114,38,38,40,105,61,33,48,44,109,40,114,41,124,124,40,97,61,33,48,41,44,108,38,38,40,97,63,40,116,46,99,97,108,108,40,101,44,114,41,44,116,61,110,117,108,108,41,58,40,108,61,116,44,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,108,46,99,97,108,108,40,107,40,101,41,44,110,41,125,41,41,44,116,41,41,102,111,114,40,59,115,60,117,59,115,43,43,41,116,40,101,91,115,93,44,110,44,97,63,114,58,114,46,99,97,108,108,40,101,91,115,93,44,115,44,116,40,101,91,115,93,44,110,41,41,41,59,114,101,116,117,114,110,32,105,63,101,58,108,63,116,46,99,97,108,108,40,101,41,58,117,63,116,40,101,91,48,93,44,110,41,58,111,125,44,122,61,47,94,45,109,115,45,47,44,85,61,47,45,40,91,97,45,122,93,41,47,103,59,102,117,110,99,116,105,111,110,32,88,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,86,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,122,44,34,109,115,45,34,41,46,114,101,112,108,97,99,101,40,85,44,88,41,125,118,97,114,32,71,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,49,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,101,46,110,111,100,101,84,121,112,101,124,124,33,43,101,46,110,111,100,101,84,121,112,101,125,59,102,117,110,99,116,105,111,110,32,89,40,41,123,116,104,105,115,46,101,120,112,97,110,100,111,61,107,46,101,120,112,97,110,100,111,43,89,46,117,105,100,43,43,125,89,46,117,105,100,61,49,44,89,46,112,114,111,116,111,116,121,112,101,61,123,99,97,99,104,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,116,124,124,40,116,61,123,125,44,71,40,101,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,116,58,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,116,104,105,115,46,101,120,112,97,110,100,111,44,123,118,97,108,117,101,58,116,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,41,41,41,44,116,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,116,104,105,115,46,99,97,99,104,101,40,101,41,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,41,105,91,86,40,116,41,93,61,110,59,101,108,115,101,32,102,111,114,40,114,32,105,110,32,116,41,105,91,86,40,114,41,93,61,116,91,114,93,59,114,101,116,117,114,110,32,105,125,44,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,46,99,97,99,104,101,40,101,41,58,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,38,38,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,91,86,40,116,41,93,125,44,97,99,99,101,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,46,103,101,116,40,101,44,116,41,58,40,116,104,105,115,46,115,101,116,40,101,44,116,44,110,41,44,118,111,105,100,32,48,33,61,61,110,63,110,58,116,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,105,102,40,118,111,105,100,32,48,33,61,61,114,41,123,105,102,40,118,111,105,100,32,48,33,61,61,116,41,123,110,61,40,116,61,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,63,116,46,109,97,112,40,86,41,58,40,116,61,86,40,116,41,41,105,110,32,114,63,91,116,93,58,116,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,100,101,108,101,116,101,32,114,91,116,91,110,93,93,125,40,118,111,105,100,32,48,61,61,61,116,124,124,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,114,41,41,38,38,40,101,46,110,111,100,101,84,121,112,101,63,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,58,100,101,108,101,116,101,32,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,41,125,125,44,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,116,104,105,115,46,101,120,112,97,110,100,111,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,125,125,59,118,97,114,32,81,61,110,101,119,32,89,44,74,61,110,101,119,32,89,44,75,61,47,94,40,63,58,92,123,91,92,119,92,87,93,42,92,125,124,92,91,91,92,119,92,87,93,42,92,93,41,36,47,44,90,61,47,91,65,45,90,93,47,103,59,102,117,110,99,116,105,111,110,32,101,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,118,111,105,100,32,48,61,61,61,110,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,105,102,40,114,61,34,100,97,116,97,45,34,43,116,46,114,101,112,108,97,99,101,40,90,44,34,45,36,38,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,110,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,114,41,41,41,123,116,114,121,123,110,61,34,116,114,117,101,34,61,61,61,40,105,61,110,41,124,124,34,102,97,108,115,101,34,33,61,61,105,38,38,40,34,110,117,108,108,34,61,61,61,105,63,110,117,108,108,58,105,61,61,61,43,105,43,34,34,63,43,105,58,75,46,116,101,115,116,40,105,41,63,74,83,79,78,46,112,97,114,115,101,40,105,41,58,105,41,125,99,97,116,99,104,40,101,41,123,125,74,46,115,101,116,40,101,44,116,44,110,41,125,101,108,115,101,32,110,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,110,125,107,46,101,120,116,101,110,100,40,123,104,97,115,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,74,46,104,97,115,68,97,116,97,40,101,41,124,124,81,46,104,97,115,68,97,116,97,40,101,41,125,44,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,74,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,46,114,101,109,111,118,101,40,101,44,116,41,125,44,95,100,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,81,46,97,99,99,101,115,115,40,101,44,116,44,110,41,125,44,95,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,81,46,114,101,109,111,118,101,40,101,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,97,116,97,58,102,117,110,99,116,105,111,110,40,110,44,101,41,123,118,97,114,32,116,44,114,44,105,44,111,61,116,104,105,115,91,48,93,44,97,61,111,38,38,111,46,97,116,116,114,105,98,117,116,101,115,59,105,102,40,118,111,105,100,32,48,61,61,61,110,41,123,105,102,40,116,104,105,115,46,108,101,110,103,116,104,38,38,40,105,61,74,46,103,101,116,40,111,41,44,49,61,61,61,111,46,110,111,100,101,84,121,112,101,38,38,33,81,46,103,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,41,41,41,123,116,61,97,46,108,101,110,103,116,104,59,119,104,105,108,101,40,116,45,45,41,97,91,116,93,38,38,48,61,61,61,40,114,61,97,91,116,93,46,110,97,109,101,41,46,105,110,100,101,120,79,102,40,34,100,97,116,97,45,34,41,38,38,40,114,61,86,40,114,46,115,108,105,99,101,40,53,41,41,44,101,101,40,111,44,114,44,105,91,114,93,41,41,59,81,46,115,101,116,40,111,44,34,104,97,115,68,97,116,97,65,116,116,114,115,34,44,33,48,41,125,114,101,116,117,114,110,32,105,125,114,101,116,117,114,110,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,41,125,41,58,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,111,38,38,118,111,105,100,32,48,61,61,61,101,41,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,40,116,61,74,46,103,101,116,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,33,61,61,40,116,61,101,101,40,111,44,110,41,41,63,116,58,118,111,105,100,32,48,59,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,115,101,116,40,116,104,105,115,44,110,44,101,41,125,41,125,44,110,117,108,108,44,101,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,110,117,108,108,44,33,48,41,125,44,114,101,109,111,118,101,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,74,46,114,101,109,111,118,101,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,101,41,114,101,116,117,114,110,32,116,61,40,116,124,124,34,102,120,34,41,43,34,113,117,101,117,101,34,44,114,61,81,46,103,101,116,40,101,44,116,41,44,110,38,38,40,33,114,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,114,61,81,46,97,99,99,101,115,115,40,101,44,116,44,107,46,109,97,107,101,65,114,114,97,121,40,110,41,41,58,114,46,112,117,115,104,40,110,41,41,44,114,124,124,91,93,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,124,124,34,102,120,34,59,118,97,114,32,110,61,107,46,113,117,101,117,101,40,101,44,116,41,44,114,61,110,46,108,101,110,103,116,104,44,105,61,110,46,115,104,105,102,116,40,41,44,111,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,116,41,59,34,105,110,112,114,111,103,114,101,115,115,34,61,61,61,105,38,38,40,105,61,110,46,115,104,105,102,116,40,41,44,114,45,45,41,44,105,38,38,40,34,102,120,34,61,61,61,116,38,38,110,46,117,110,115,104,105,102,116,40,34,105,110,112,114,111,103,114,101,115,115,34,41,44,100,101,108,101,116,101,32,111,46,115,116,111,112,44,105,46,99,97,108,108,40,101,44,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,101,44,116,41,125,44,111,41,41,44,33,114,38,38,111,38,38,111,46,101,109,112,116,121,46,102,105,114,101,40,41,125,44,95,113,117,101,117,101,72,111,111,107,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,43,34,113,117,101,117,101,72,111,111,107,115,34,59,114,101,116,117,114,110,32,81,46,103,101,116,40,101,44,110,41,124,124,81,46,97,99,99,101,115,115,40,101,44,110,44,123,101,109,112,116,121,58,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,46,97,100,100,40,102,117,110,99,116,105,111,110,40,41,123,81,46,114,101,109,111,118,101,40,101,44,91,116,43,34,113,117,101,117,101,34,44,110,93,41,125,41,125,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,101,61,50,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,34,102,120,34,44,101,45,45,41,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,60,101,63,107,46,113,117,101,117,101,40,116,104,105,115,91,48,93,44,116,41,58,118,111,105,100,32,48,61,61,61,110,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,113,117,101,117,101,40,116,104,105,115,44,116,44,110,41,59,107,46,95,113,117,101,117,101,72,111,111,107,115,40,116,104,105,115,44,116,41,44,34,102,120,34,61,61,61,116,38,38,34,105,110,112,114,111,103,114,101,115,115,34,33,61,61,101,91,48,93,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,116,41,125,41,125,44,100,101,113,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,101,41,125,41,125,44,99,108,101,97,114,81,117,101,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,113,117,101,117,101,40,101,124,124,34,102,120,34,44,91,93,41,125,44,112,114,111,109,105,115,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,49,44,105,61,107,46,68,101,102,101,114,114,101,100,40,41,44,111,61,116,104,105,115,44,97,61,116,104,105,115,46,108,101,110,103,116,104,44,115,61,102,117,110,99,116,105,111,110,40,41,123,45,45,114,124,124,105,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,111,93,41,125,59,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,101,61,101,124,124,34,102,120,34,59,119,104,105,108,101,40,97,45,45,41,40,110,61,81,46,103,101,116,40,111,91,97,93,44,101,43,34,113,117,101,117,101,72,111,111,107,115,34,41,41,38,38,110,46,101,109,112,116,121,38,38,40,114,43,43,44,110,46,101,109,112,116,121,46,97,100,100,40,115,41,41,59,114,101,116,117,114,110,32,115,40,41,44,105,46,112,114,111,109,105,115,101,40,116,41,125,125,41,59,118,97,114,32,116,101,61,47,91,43,45,93,63,40,63,58,92,100,42,92,46,124,41,92,100,43,40,63,58,91,101,69,93,91,43,45,93,63,92,100,43,124,41,47,46,115,111,117,114,99,101,44,110,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,63,58,40,91,43,45,93,41,61,124,41,40,34,43,116,101,43,34,41,40,91,97,45,122,37,93,42,41,36,34,44,34,105,34,41,44,114,101,61,91,34,84,111,112,34,44,34,82,105,103,104,116,34,44,34,66,111,116,116,111,109,34,44,34,76,101,102,116,34,93,44,105,101,61,69,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,125,44,97,101,61,123,99,111,109,112,111,115,101,100,58,33,48,125,59,105,101,46,103,101,116,82,111,111,116,78,111,100,101,38,38,40,111,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,99,111,110,116,97,105,110,115,40,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,41,124,124,101,46,103,101,116,82,111,111,116,78,111,100,101,40,97,101,41,61,61,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,125,41,59,118,97,114,32,115,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,34,110,111,110,101,34,61,61,61,40,101,61,116,124,124,101,41,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,34,34,61,61,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,111,101,40,101,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,125,44,117,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,123,125,59,102,111,114,40,111,32,105,110,32,116,41,97,91,111,93,61,101,46,115,116,121,108,101,91,111,93,44,101,46,115,116,121,108,101,91,111,93,61,116,91,111,93,59,102,111,114,40,111,32,105,110,32,105,61,110,46,97,112,112,108,121,40,101,44,114,124,124,91,93,41,44,116,41,101,46,115,116,121,108,101,91,111,93,61,97,91,111,93,59,114,101,116,117,114,110,32,105,125,59,102,117,110,99,116,105,111,110,32,108,101,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,61,50,48,44,115,61,114,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,46,99,117,114,40,41,125,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,115,115,40,101,44,116,44,34,34,41,125,44,117,61,115,40,41,44,108,61,110,38,38,110,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,63,34,34,58,34,112,120,34,41,44,99,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,115,115,78,117,109,98,101,114,91,116,93,124,124,34,112,120,34,33,61,61,108,38,38,43,117,41,38,38,110,101,46,101,120,101,99,40,107,46,99,115,115,40,101,44,116,41,41,59,105,102,40,99,38,38,99,91,51,93,33,61,61,108,41,123,117,47,61,50,44,108,61,108,124,124,99,91,51,93,44,99,61,43,117,124,124,49,59,119,104,105,108,101,40,97,45,45,41,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,40,49,45,111,41,42,40,49,45,40,111,61,115,40,41,47,117,124,124,46,53,41,41,60,61,48,38,38,40,97,61,48,41,44,99,47,61,111,59,99,42,61,50,44,107,46,115,116,121,108,101,40,101,44,116,44,99,43,108,41,44,110,61,110,124,124,91,93,125,114,101,116,117,114,110,32,110,38,38,40,99,61,43,99,124,124,43,117,124,124,48,44,105,61,110,91,49,93,63,99,43,40,110,91,49,93,43,49,41,42,110,91,50,93,58,43,110,91,50,93,44,114,38,38,40,114,46,117,110,105,116,61,108,44,114,46,115,116,97,114,116,61,99,44,114,46,101,110,100,61,105,41,41,44,105,125,118,97,114,32,99,101,61,123,125,59,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,61,91,93,44,99,61,48,44,102,61,101,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,40,114,61,101,91,99,93,41,46,115,116,121,108,101,38,38,40,110,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,44,116,63,40,34,110,111,110,101,34,61,61,61,110,38,38,40,108,91,99,93,61,81,46,103,101,116,40,114,44,34,100,105,115,112,108,97,121,34,41,124,124,110,117,108,108,44,108,91,99,93,124,124,40,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,34,41,41,44,34,34,61,61,61,114,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,115,101,40,114,41,38,38,40,108,91,99,93,61,40,117,61,97,61,111,61,118,111,105,100,32,48,44,97,61,40,105,61,114,41,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,115,61,105,46,110,111,100,101,78,97,109,101,44,40,117,61,99,101,91,115,93,41,124,124,40,111,61,97,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,97,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,115,41,41,44,117,61,107,46,99,115,115,40,111,44,34,100,105,115,112,108,97,121,34,41,44,111,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,34,110,111,110,101,34,61,61,61,117,38,38,40,117,61,34,98,108,111,99,107,34,41,44,99,101,91,115,93,61,117,41,41,41,41,58,34,110,111,110,101,34,33,61,61,110,38,38,40,108,91,99,93,61,34,110,111,110,101,34,44,81,46,115,101,116,40,114,44,34,100,105,115,112,108,97,121,34,44,110,41,41,41,59,102,111,114,40,99,61,48,59,99,60,102,59,99,43,43,41,110,117,108,108,33,61,108,91,99,93,38,38,40,101,91,99,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,108,91,99,93,41,59,114,101,116,117,114,110,32,101,125,107,46,102,110,46,101,120,116,101,110,100,40,123,115,104,111,119,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,44,33,48,41,125,44,104,105,100,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,101,40,116,104,105,115,41,125,44,116,111,103,103,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,63,116,104,105,115,46,115,104,111,119,40,41,58,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,115,101,40,116,104,105,115,41,63,107,40,116,104,105,115,41,46,115,104,111,119,40,41,58,107,40,116,104,105,115,41,46,104,105,100,101,40,41,125,41,125,125,41,59,118,97,114,32,112,101,61,47,94,40,63,58,99,104,101,99,107,98,111,120,124,114,97,100,105,111,41,36,47,105,44,100,101,61,47,60,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,47,105,44,104,101,61,47,94,36,124,94,109,111,100,117,108,101,36,124,92,47,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,47,105,44,103,101,61,123,111,112,116,105,111,110,58,91,49,44,34,60,115,101,108,101,99,116,32,109,117,108,116,105,112,108,101,61,39,109,117,108,116,105,112,108,101,39,62,34,44,34,60,47,115,101,108,101,99,116,62,34,93,44,116,104,101,97,100,58,91,49,44,34,60,116,97,98,108,101,62,34,44,34,60,47,116,97,98,108,101,62,34,93,44,99,111,108,58,91,50,44,34,60,116,97,98,108,101,62,60,99,111,108,103,114,111,117,112,62,34,44,34,60,47,99,111,108,103,114,111,117,112,62,60,47,116,97,98,108,101,62,34,93,44,116,114,58,91,50,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,34,44,34,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,116,100,58,91,51,44,34,60,116,97,98,108,101,62,60,116,98,111,100,121,62,60,116,114,62,34,44,34,60,47,116,114,62,60,47,116,98,111,100,121,62,60,47,116,97,98,108,101,62,34,93,44,95,100,101,102,97,117,108,116,58,91,48,44,34,34,44,34,34,93,125,59,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,41,123,118,97,114,32,110,59,114,101,116,117,114,110,32,110,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,63,101,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,116,124,124,34,42,34,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,63,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,124,124,34,42,34,41,58,91,93,44,118,111,105,100,32,48,61,61,61,116,124,124,116,38,38,65,40,101,44,116,41,63,107,46,109,101,114,103,101,40,91,101,93,44,110,41,58,110,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,44,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,81,46,115,101,116,40,101,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,44,33,116,124,124,81,46,103,101,116,40,116,91,110,93,44,34,103,108,111,98,97,108,69,118,97,108,34,41,41,125,103,101,46,111,112,116,103,114,111,117,112,61,103,101,46,111,112,116,105,111,110,44,103,101,46,116,98,111,100,121,61,103,101,46,116,102,111,111,116,61,103,101,46,99,111,108,103,114,111,117,112,61,103,101,46,99,97,112,116,105,111,110,61,103,101,46,116,104,101,97,100,44,103,101,46,116,104,61,103,101,46,116,100,59,118,97,114,32,109,101,44,120,101,44,98,101,61,47,60,124,38,35,63,92,119,43,59,47,59,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,114,44,105,41,123,102,111,114,40,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,61,116,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,44,112,61,91,93,44,100,61,48,44,104,61,101,46,108,101,110,103,116,104,59,100,60,104,59,100,43,43,41,105,102,40,40,111,61,101,91,100,93,41,124,124,48,61,61,61,111,41,105,102,40,34,111,98,106,101,99,116,34,61,61,61,119,40,111,41,41,107,46,109,101,114,103,101,40,112,44,111,46,110,111,100,101,84,121,112,101,63,91,111,93,58,111,41,59,101,108,115,101,32,105,102,40,98,101,46,116,101,115,116,40,111,41,41,123,97,61,97,124,124,102,46,97,112,112,101,110,100,67,104,105,108,100,40,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,115,61,40,100,101,46,101,120,101,99,40,111,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,117,61,103,101,91,115,93,124,124,103,101,46,95,100,101,102,97,117,108,116,44,97,46,105,110,110,101,114,72,84,77,76,61,117,91,49,93,43,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,111,41,43,117,91,50,93,44,99,61,117,91,48,93,59,119,104,105,108,101,40,99,45,45,41,97,61,97,46,108,97,115,116,67,104,105,108,100,59,107,46,109,101,114,103,101,40,112,44,97,46,99,104,105,108,100,78,111,100,101,115,41,44,40,97,61,102,46,102,105,114,115,116,67,104,105,108,100,41,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,101,108,115,101,32,112,46,112,117,115,104,40,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,111,41,41,59,102,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,100,61,48,59,119,104,105,108,101,40,111,61,112,91,100,43,43,93,41,105,102,40,114,38,38,45,49,60,107,46,105,110,65,114,114,97,121,40,111,44,114,41,41,105,38,38,105,46,112,117,115,104,40,111,41,59,101,108,115,101,32,105,102,40,108,61,111,101,40,111,41,44,97,61,118,101,40,102,46,97,112,112,101,110,100,67,104,105,108,100,40,111,41,44,34,115,99,114,105,112,116,34,41,44,108,38,38,121,101,40,97,41,44,110,41,123,99,61,48,59,119,104,105,108,101,40,111,61,97,91,99,43,43,93,41,104,101,46,116,101,115,116,40,111,46,116,121,112,101,124,124,34,34,41,38,38,110,46,112,117,115,104,40,111,41,125,114,101,116,117,114,110,32,102,125,109,101,61,69,46,99,114,101,97,116,101,68,111,99,117,109,101,110,116,70,114,97,103,109,101,110,116,40,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,41,44,40,120,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,34,114,97,100,105,111,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,104,101,99,107,101,100,34,44,34,99,104,101,99,107,101,100,34,41,44,120,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,110,97,109,101,34,44,34,116,34,41,44,109,101,46,97,112,112,101,110,100,67,104,105,108,100,40,120,101,41,44,121,46,99,104,101,99,107,67,108,111,110,101,61,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,99,104,101,99,107,101,100,44,109,101,46,105,110,110,101,114,72,84,77,76,61,34,60,116,101,120,116,97,114,101,97,62,120,60,47,116,101,120,116,97,114,101,97,62,34,44,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,61,33,33,109,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,108,97,115,116,67,104,105,108,100,46,100,101,102,97,117,108,116,86,97,108,117,101,59,118,97,114,32,84,101,61,47,94,107,101,121,47,44,67,101,61,47,94,40,63,58,109,111,117,115,101,124,112,111,105,110,116,101,114,124,99,111,110,116,101,120,116,109,101,110,117,124,100,114,97,103,124,100,114,111,112,41,124,99,108,105,99,107,47,44,69,101,61,47,94,40,91,94,46,93,42,41,40,63,58,92,46,40,46,43,41,124,41,47,59,102,117,110,99,116,105,111,110,32,107,101,40,41,123,114,101,116,117,114,110,33,48,125,102,117,110,99,116,105,111,110,32,83,101,40,41,123,114,101,116,117,114,110,33,49,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,61,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,69,46,97,99,116,105,118,101,69,108,101,109,101,110,116,125,99,97,116,99,104,40,101,41,123,125,125,40,41,61,61,40,34,102,111,99,117,115,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,65,101,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,44,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,41,123,102,111,114,40,115,32,105,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,38,38,40,114,61,114,124,124,110,44,110,61,118,111,105,100,32,48,41,44,116,41,65,101,40,101,44,115,44,110,44,114,44,116,91,115,93,44,111,41,59,114,101,116,117,114,110,32,101,125,105,102,40,110,117,108,108,61,61,114,38,38,110,117,108,108,61,61,105,63,40,105,61,110,44,114,61,110,61,118,111,105,100,32,48,41,58,110,117,108,108,61,61,105,38,38,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,63,40,105,61,114,44,114,61,118,111,105,100,32,48,41,58,40,105,61,114,44,114,61,110,44,110,61,118,111,105,100,32,48,41,41,44,33,49,61,61,61,105,41,105,61,83,101,59,101,108,115,101,32,105,102,40,33,105,41,114,101,116,117,114,110,32,101,59,114,101,116,117,114,110,32,49,61,61,61,111,38,38,40,97,61,105,44,40,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,40,41,46,111,102,102,40,101,41,44,97,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,41,46,103,117,105,100,61,97,46,103,117,105,100,124,124,40,97,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,41,44,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,97,100,100,40,116,104,105,115,44,116,44,105,44,114,44,110,41,125,41,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,105,44,111,41,123,111,63,40,81,46,115,101,116,40,101,44,105,44,33,49,41,44,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,123,110,97,109,101,115,112,97,99,101,58,33,49,44,104,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,81,46,103,101,116,40,116,104,105,115,44,105,41,59,105,102,40,49,38,101,46,105,115,84,114,105,103,103,101,114,38,38,116,104,105,115,91,105,93,41,123,105,102,40,114,46,108,101,110,103,116,104,41,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,105,93,124,124,123,125,41,46,100,101,108,101,103,97,116,101,84,121,112,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,101,108,115,101,32,105,102,40,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,44,81,46,115,101,116,40,116,104,105,115,44,105,44,114,41,44,116,61,111,40,116,104,105,115,44,105,41,44,116,104,105,115,91,105,93,40,41,44,114,33,61,61,40,110,61,81,46,103,101,116,40,116,104,105,115,44,105,41,41,124,124,116,63,81,46,115,101,116,40,116,104,105,115,44,105,44,33,49,41,58,110,61,123,125,44,114,33,61,61,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,110,46,118,97,108,117,101,125,101,108,115,101,32,114,46,108,101,110,103,116,104,38,38,40,81,46,115,101,116,40,116,104,105,115,44,105,44,123,118,97,108,117,101,58,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,107,46,101,120,116,101,110,100,40,114,91,48,93,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,41,44,114,46,115,108,105,99,101,40,49,41,44,116,104,105,115,41,125,41,44,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,41,125,125,41,41,58,118,111,105,100,32,48,61,61,61,81,46,103,101,116,40,101,44,105,41,38,38,107,46,101,118,101,110,116,46,97,100,100,40,101,44,105,44,107,101,41,125,107,46,101,118,101,110,116,61,123,103,108,111,98,97,108,58,123,125,44,97,100,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,103,101,116,40,116,41,59,105,102,40,118,41,123,110,46,104,97,110,100,108,101,114,38,38,40,110,61,40,111,61,110,41,46,104,97,110,100,108,101,114,44,105,61,111,46,115,101,108,101,99,116,111,114,41,44,105,38,38,107,46,102,105,110,100,46,109,97,116,99,104,101,115,83,101,108,101,99,116,111,114,40,105,101,44,105,41,44,110,46,103,117,105,100,124,124,40,110,46,103,117,105,100,61,107,46,103,117,105,100,43,43,41,44,40,117,61,118,46,101,118,101,110,116,115,41,124,124,40,117,61,118,46,101,118,101,110,116,115,61,123,125,41,44,40,97,61,118,46,104,97,110,100,108,101,41,124,124,40,97,61,118,46,104,97,110,100,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,107,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,33,61,61,101,46,116,121,112,101,63,107,46,101,118,101,110,116,46,100,105,115,112,97,116,99,104,46,97,112,112,108,121,40,116,44,97,114,103,117,109,101,110,116,115,41,58,118,111,105,100,32,48,125,41,44,108,61,40,101,61,40,101,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,101,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,38,38,40,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,100,61,40,105,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,44,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,99,61,107,46,101,120,116,101,110,100,40,123,116,121,112,101,58,100,44,111,114,105,103,84,121,112,101,58,103,44,100,97,116,97,58,114,44,104,97,110,100,108,101,114,58,110,44,103,117,105,100,58,110,46,103,117,105,100,44,115,101,108,101,99,116,111,114,58,105,44,110,101,101,100,115,67,111,110,116,101,120,116,58,105,38,38,107,46,101,120,112,114,46,109,97,116,99,104,46,110,101,101,100,115,67,111,110,116,101,120,116,46,116,101,115,116,40,105,41,44,110,97,109,101,115,112,97,99,101,58,104,46,106,111,105,110,40,34,46,34,41,125,44,111,41,44,40,112,61,117,91,100,93,41,124,124,40,40,112,61,117,91,100,93,61,91,93,41,46,100,101,108,101,103,97,116,101,67,111,117,110,116,61,48,44,102,46,115,101,116,117,112,38,38,33,49,33,61,61,102,46,115,101,116,117,112,46,99,97,108,108,40,116,44,114,44,104,44,97,41,124,124,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,97,41,41,44,102,46,97,100,100,38,38,40,102,46,97,100,100,46,99,97,108,108,40,116,44,99,41,44,99,46,104,97,110,100,108,101,114,46,103,117,105,100,124,124,40,99,46,104,97,110,100,108,101,114,46,103,117,105,100,61,110,46,103,117,105,100,41,41,44,105,63,112,46,115,112,108,105,99,101,40,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,43,43,44,48,44,99,41,58,112,46,112,117,115,104,40,99,41,44,107,46,101,118,101,110,116,46,103,108,111,98,97,108,91,100,93,61,33,48,41,125,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,41,123,118,97,114,32,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,44,100,44,104,44,103,44,118,61,81,46,104,97,115,68,97,116,97,40,101,41,38,38,81,46,103,101,116,40,101,41,59,105,102,40,118,38,38,40,117,61,118,46,101,118,101,110,116,115,41,41,123,108,61,40,116,61,40,116,124,124,34,34,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,41,46,108,101,110,103,116,104,59,119,104,105,108,101,40,108,45,45,41,105,102,40,100,61,103,61,40,115,61,69,101,46,101,120,101,99,40,116,91,108,93,41,124,124,91,93,41,91,49,93,44,104,61,40,115,91,50,93,124,124,34,34,41,46,115,112,108,105,116,40,34,46,34,41,46,115,111,114,116,40,41,44,100,41,123,102,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,112,61,117,91,100,61,40,114,63,102,46,100,101,108,101,103,97,116,101,84,121,112,101,58,102,46,98,105,110,100,84,121,112,101,41,124,124,100,93,124,124,91,93,44,115,61,115,91,50,93,38,38,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,44,97,61,111,61,112,46,108,101,110,103,116,104,59,119,104,105,108,101,40,111,45,45,41,99,61,112,91,111,93,44,33,105,38,38,103,33,61,61,99,46,111,114,105,103,84,121,112,101,124,124,110,38,38,110,46,103,117,105,100,33,61,61,99,46,103,117,105,100,124,124,115,38,38,33,115,46,116,101,115,116,40,99,46,110,97,109,101,115,112,97,99,101,41,124,124,114,38,38,114,33,61,61,99,46,115,101,108,101,99,116,111,114,38,38,40,34,42,42,34,33,61,61,114,124,124,33,99,46,115,101,108,101,99,116,111,114,41,124,124,40,112,46,115,112,108,105,99,101,40,111,44,49,41,44,99,46,115,101,108,101,99,116,111,114,38,38,112,46,100,101,108,101,103,97,116,101,67,111,117,110,116,45,45,44,102,46,114,101,109,111,118,101,38,38,102,46,114,101,109,111,118,101,46,99,97,108,108,40,101,44,99,41,41,59,97,38,38,33,112,46,108,101,110,103,116,104,38,38,40,102,46,116,101,97,114,100,111,119,110,38,38,33,49,33,61,61,102,46,116,101,97,114,100,111,119,110,46,99,97,108,108,40,101,44,104,44,118,46,104,97,110,100,108,101,41,124,124,107,46,114,101,109,111,118,101,69,118,101,110,116,40,101,44,100,44,118,46,104,97,110,100,108,101,41,44,100,101,108,101,116,101,32,117,91,100,93,41,125,101,108,115,101,32,102,111,114,40,100,32,105,110,32,117,41,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,101,44,100,43,116,91,108,93,44,110,44,114,44,33,48,41,59,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,117,41,38,38,81,46,114,101,109,111,118,101,40,101,44,34,104,97,110,100,108,101,32,101,118,101,110,116,115,34,41,125,125,44,100,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,44,111,44,97,44,115,61,107,46,101,118,101,110,116,46,102,105,120,40,101,41,44,117,61,110,101,119,32,65,114,114,97,121,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,44,108,61,40,81,46,103,101,116,40,116,104,105,115,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,115,46,116,121,112,101,93,124,124,91,93,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,115,46,116,121,112,101,93,124,124,123,125,59,102,111,114,40,117,91,48,93,61,115,44,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,117,91,116,93,61,97,114,103,117,109,101,110,116,115,91,116,93,59,105,102,40,115,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,61,116,104,105,115,44,33,99,46,112,114,101,68,105,115,112,97,116,99,104,124,124,33,49,33,61,61,99,46,112,114,101,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,41,123,97,61,107,46,101,118,101,110,116,46,104,97,110,100,108,101,114,115,46,99,97,108,108,40,116,104,105,115,44,115,44,108,41,44,116,61,48,59,119,104,105,108,101,40,40,105,61,97,91,116,43,43,93,41,38,38,33,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,123,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,105,46,101,108,101,109,44,110,61,48,59,119,104,105,108,101,40,40,111,61,105,46,104,97,110,100,108,101,114,115,91,110,43,43,93,41,38,38,33,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,115,46,114,110,97,109,101,115,112,97,99,101,38,38,33,49,33,61,61,111,46,110,97,109,101,115,112,97,99,101,38,38,33,115,46,114,110,97,109,101,115,112,97,99,101,46,116,101,115,116,40,111,46,110,97,109,101,115,112,97,99,101,41,124,124,40,115,46,104,97,110,100,108,101,79,98,106,61,111,44,115,46,100,97,116,97,61,111,46,100,97,116,97,44,118,111,105,100,32,48,33,61,61,40,114,61,40,40,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,111,46,111,114,105,103,84,121,112,101,93,124,124,123,125,41,46,104,97,110,100,108,101,124,124,111,46,104,97,110,100,108,101,114,41,46,97,112,112,108,121,40,105,46,101,108,101,109,44,117,41,41,38,38,33,49,61,61,61,40,115,46,114,101,115,117,108,116,61,114,41,38,38,40,115,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,41,41,125,114,101,116,117,114,110,32,99,46,112,111,115,116,68,105,115,112,97,116,99,104,38,38,99,46,112,111,115,116,68,105,115,112,97,116,99,104,46,99,97,108,108,40,116,104,105,115,44,115,41,44,115,46,114,101,115,117,108,116,125,125,44,104,97,110,100,108,101,114,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,91,93,44,117,61,116,46,100,101,108,101,103,97,116,101,67,111,117,110,116,44,108,61,101,46,116,97,114,103,101,116,59,105,102,40,117,38,38,108,46,110,111,100,101,84,121,112,101,38,38,33,40,34,99,108,105,99,107,34,61,61,61,101,46,116,121,112,101,38,38,49,60,61,101,46,98,117,116,116,111,110,41,41,102,111,114,40,59,108,33,61,61,116,104,105,115,59,108,61,108,46,112,97,114,101,110,116,78,111,100,101,124,124,116,104,105,115,41,105,102,40,49,61,61,61,108,46,110,111,100,101,84,121,112,101,38,38,40,34,99,108,105,99,107,34,33,61,61,101,46,116,121,112,101,124,124,33,48,33,61,61,108,46,100,105,115,97,98,108,101,100,41,41,123,102,111,114,40,111,61,91,93,44,97,61,123,125,44,110,61,48,59,110,60,117,59,110,43,43,41,118,111,105,100,32,48,61,61,61,97,91,105,61,40,114,61,116,91,110,93,41,46,115,101,108,101,99,116,111,114,43,34,32,34,93,38,38,40,97,91,105,93,61,114,46,110,101,101,100,115,67,111,110,116,101,120,116,63,45,49,60,107,40,105,44,116,104,105,115,41,46,105,110,100,101,120,40,108,41,58,107,46,102,105,110,100,40,105,44,116,104,105,115,44,110,117,108,108,44,91,108,93,41,46,108,101,110,103,116,104,41,44,97,91,105,93,38,38,111,46,112,117,115,104,40,114,41,59,111,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,111,125,41,125,114,101,116,117,114,110,32,108,61,116,104,105,115,44,117,60,116,46,108,101,110,103,116,104,38,38,115,46,112,117,115,104,40,123,101,108,101,109,58,108,44,104,97,110,100,108,101,114,115,58,116,46,115,108,105,99,101,40,117,41,125,41,44,115,125,44,97,100,100,80,114,111,112,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,109,40,101,41,63,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,101,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,125,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,41,114,101,116,117,114,110,32,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,91,116,93,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,104,105,115,44,116,44,123,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,44,118,97,108,117,101,58,101,125,41,125,125,41,125,44,102,105,120,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,101,41,125,44,115,112,101,99,105,97,108,58,123,108,111,97,100,58,123,110,111,66,117,98,98,108,101,58,33,48,125,44,99,108,105,99,107,58,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,44,107,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,124,124,101,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,68,101,40,116,44,34,99,108,105,99,107,34,41,44,33,48,125,44,95,100,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,97,114,103,101,116,59,114,101,116,117,114,110,32,112,101,46,116,101,115,116,40,116,46,116,121,112,101,41,38,38,116,46,99,108,105,99,107,38,38,65,40,116,44,34,105,110,112,117,116,34,41,38,38,81,46,103,101,116,40,116,44,34,99,108,105,99,107,34,41,124,124,65,40,116,44,34,97,34,41,125,125,44,98,101,102,111,114,101,117,110,108,111,97,100,58,123,112,111,115,116,68,105,115,112,97,116,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,33,61,61,101,46,114,101,115,117,108,116,38,38,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,38,38,40,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,114,101,116,117,114,110,86,97,108,117,101,61,101,46,114,101,115,117,108,116,41,125,125,125,125,44,107,46,114,101,109,111,118,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,38,38,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,110,41,125,44,107,46,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,107,46,69,118,101,110,116,41,41,114,101,116,117,114,110,32,110,101,119,32,107,46,69,118,101,110,116,40,101,44,116,41,59,101,38,38,101,46,116,121,112,101,63,40,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,61,101,44,116,104,105,115,46,116,121,112,101,61,101,46,116,121,112,101,44,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,118,111,105,100,32,48,61,61,61,101,46,100,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,38,38,33,49,61,61,61,101,46,114,101,116,117,114,110,86,97,108,117,101,63,107,101,58,83,101,44,116,104,105,115,46,116,97,114,103,101,116,61,101,46,116,97,114,103,101,116,38,38,51,61,61,61,101,46,116,97,114,103,101,116,46,110,111,100,101,84,121,112,101,63,101,46,116,97,114,103,101,116,46,112,97,114,101,110,116,78,111,100,101,58,101,46,116,97,114,103,101,116,44,116,104,105,115,46,99,117,114,114,101,110,116,84,97,114,103,101,116,61,101,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,114,101,108,97,116,101,100,84,97,114,103,101,116,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,41,58,116,104,105,115,46,116,121,112,101,61,101,44,116,38,38,107,46,101,120,116,101,110,100,40,116,104,105,115,44,116,41,44,116,104,105,115,46,116,105,109,101,83,116,97,109,112,61,101,38,38,101,46,116,105,109,101,83,116,97,109,112,124,124,68,97,116,101,46,110,111,119,40,41,44,116,104,105,115,91,107,46,101,120,112,97,110,100,111,93,61,33,48,125,44,107,46,69,118,101,110,116,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,107,46,69,118,101,110,116,44,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,58,83,101,44,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,58,83,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,49,44,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,44,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,44,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,114,105,103,105,110,97,108,69,118,101,110,116,59,116,104,105,115,46,105,115,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,61,107,101,44,101,38,38,33,116,104,105,115,46,105,115,83,105,109,117,108,97,116,101,100,38,38,101,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,125,44,107,46,101,97,99,104,40,123,97,108,116,75,101,121,58,33,48,44,98,117,98,98,108,101,115,58,33,48,44,99,97,110,99,101,108,97,98,108,101,58,33,48,44,99,104,97,110,103,101,100,84,111,117,99,104,101,115,58,33,48,44,99,116,114,108,75,101,121,58,33,48,44,100,101,116,97,105,108,58,33,48,44,101,118,101,110,116,80,104,97,115,101,58,33,48,44,109,101,116,97,75,101,121,58,33,48,44,112,97,103,101,88,58,33,48,44,112,97,103,101,89,58,33,48,44,115,104,105,102,116,75,101,121,58,33,48,44,118,105,101,119,58,33,48,44,34,99,104,97,114,34,58,33,48,44,99,111,100,101,58,33,48,44,99,104,97,114,67,111,100,101,58,33,48,44,107,101,121,58,33,48,44,107,101,121,67,111,100,101,58,33,48,44,98,117,116,116,111,110,58,33,48,44,98,117,116,116,111,110,115,58,33,48,44,99,108,105,101,110,116,88,58,33,48,44,99,108,105,101,110,116,89,58,33,48,44,111,102,102,115,101,116,88,58,33,48,44,111,102,102,115,101,116,89,58,33,48,44,112,111,105,110,116,101,114,73,100,58,33,48,44,112,111,105,110,116,101,114,84,121,112,101,58,33,48,44,115,99,114,101,101,110,88,58,33,48,44,115,99,114,101,101,110,89,58,33,48,44,116,97,114,103,101,116,84,111,117,99,104,101,115,58,33,48,44,116,111,69,108,101,109,101,110,116,58,33,48,44,116,111,117,99,104,101,115,58,33,48,44,119,104,105,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,98,117,116,116,111,110,59,114,101,116,117,114,110,32,110,117,108,108,61,61,101,46,119,104,105,99,104,38,38,84,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,110,117,108,108,33,61,101,46,99,104,97,114,67,111,100,101,63,101,46,99,104,97,114,67,111,100,101,58,101,46,107,101,121,67,111,100,101,58,33,101,46,119,104,105,99,104,38,38,118,111,105,100,32,48,33,61,61,116,38,38,67,101,46,116,101,115,116,40,101,46,116,121,112,101,41,63,49,38,116,63,49,58,50,38,116,63,51,58,52,38,116,63,50,58,48,58,101,46,119,104,105,99,104,125,125,44,107,46,101,118,101,110,116,46,97,100,100,80,114,111,112,41,44,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,44,78,101,41,44,33,49,125,44,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,68,101,40,116,104,105,115,44,101,41,44,33,48,125,44,100,101,108,101,103,97,116,101,84,121,112,101,58,116,125,125,41,44,107,46,101,97,99,104,40,123,109,111,117,115,101,101,110,116,101,114,58,34,109,111,117,115,101,111,118,101,114,34,44,109,111,117,115,101,108,101,97,118,101,58,34,109,111,117,115,101,111,117,116,34,44,112,111,105,110,116,101,114,101,110,116,101,114,58,34,112,111,105,110,116,101,114,111,118,101,114,34,44,112,111,105,110,116,101,114,108,101,97,118,101,58,34,112,111,105,110,116,101,114,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,101,93,61,123,100,101,108,101,103,97,116,101,84,121,112,101,58,105,44,98,105,110,100,84,121,112,101,58,105,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,101,46,114,101,108,97,116,101,100,84,97,114,103,101,116,44,114,61,101,46,104,97,110,100,108,101,79,98,106,59,114,101,116,117,114,110,32,110,38,38,40,110,61,61,61,116,104,105,115,124,124,107,46,99,111,110,116,97,105,110,115,40,116,104,105,115,44,110,41,41,124,124,40,101,46,116,121,112,101,61,114,46,111,114,105,103,84,121,112,101,44,116,61,114,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,44,101,46,116,121,112,101,61,105,41,44,116,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,110,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,41,125,44,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,101,44,116,44,110,44,114,44,49,41,125,44,111,102,102,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,59,105,102,40,101,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,38,38,101,46,104,97,110,100,108,101,79,98,106,41,114,101,116,117,114,110,32,114,61,101,46,104,97,110,100,108,101,79,98,106,44,107,40,101,46,100,101,108,101,103,97,116,101,84,97,114,103,101,116,41,46,111,102,102,40,114,46,110,97,109,101,115,112,97,99,101,63,114,46,111,114,105,103,84,121,112,101,43,34,46,34,43,114,46,110,97,109,101,115,112,97,99,101,58,114,46,111,114,105,103,84,121,112,101,44,114,46,115,101,108,101,99,116,111,114,44,114,46,104,97,110,100,108,101,114,41,44,116,104,105,115,59,105,102,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,41,123,102,111,114,40,105,32,105,110,32,101,41,116,104,105,115,46,111,102,102,40,105,44,116,44,101,91,105,93,41,59,114,101,116,117,114,110,32,116,104,105,115,125,114,101,116,117,114,110,33,49,33,61,61,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,124,124,40,110,61,116,44,116,61,118,111,105,100,32,48,41,44,33,49,61,61,61,110,38,38,40,110,61,83,101,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,116,104,105,115,44,101,44,110,44,116,41,125,41,125,125,41,59,118,97,114,32,106,101,61,47,60,40,63,33,97,114,101,97,124,98,114,124,99,111,108,124,101,109,98,101,100,124,104,114,124,105,109,103,124,105,110,112,117,116,124,108,105,110,107,124,109,101,116,97,124,112,97,114,97,109,41,40,40,91,97,45,122,93,91,94,92,47,92,48,62,92,120,50,48,92,116,92,114,92,110,92,102,93,42,41,91,94,62,93,42,41,92,47,62,47,103,105,44,113,101,61,47,60,115,99,114,105,112,116,124,60,115,116,121,108,101,124,60,108,105,110,107,47,105,44,76,101,61,47,99,104,101,99,107,101,100,92,115,42,40,63,58,91,94,61,93,124,61,92,115,42,46,99,104,101,99,107,101,100,46,41,47,105,44,72,101,61,47,94,92,115,42,60,33,40,63,58,92,91,67,68,65,84,65,92,91,124,45,45,41,124,40,63,58,92,93,92,93,124,45,45,41,62,92,115,42,36,47,103,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,41,123,114,101,116,117,114,110,32,65,40,101,44,34,116,97,98,108,101,34,41,38,38,65,40,49,49,33,61,61,116,46,110,111,100,101,84,121,112,101,63,116,58,116,46,102,105,114,115,116,67,104,105,108,100,44,34,116,114,34,41,38,38,107,40,101,41,46,99,104,105,108,100,114,101,110,40,34,116,98,111,100,121,34,41,91,48,93,124,124,101,125,102,117,110,99,116,105,111,110,32,80,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,61,40,110,117,108,108,33,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,41,43,34,47,34,43,101,46,116,121,112,101,44,101,125,102,117,110,99,116,105,111,110,32,82,101,40,101,41,123,114,101,116,117,114,110,34,116,114,117,101,47,34,61,61,61,40,101,46,116,121,112,101,124,124,34,34,41,46,115,108,105,99,101,40,48,44,53,41,63,101,46,116,121,112,101,61,101,46,116,121,112,101,46,115,108,105,99,101,40,53,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,41,44,101,125,102,117,110,99,116,105,111,110,32,77,101,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,44,117,44,108,59,105,102,40,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,123,105,102,40,81,46,104,97,115,68,97,116,97,40,101,41,38,38,40,111,61,81,46,97,99,99,101,115,115,40,101,41,44,97,61,81,46,115,101,116,40,116,44,111,41,44,108,61,111,46,101,118,101,110,116,115,41,41,102,111,114,40,105,32,105,110,32,100,101,108,101,116,101,32,97,46,104,97,110,100,108,101,44,97,46,101,118,101,110,116,115,61,123,125,44,108,41,102,111,114,40,110,61,48,44,114,61,108,91,105,93,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,107,46,101,118,101,110,116,46,97,100,100,40,116,44,105,44,108,91,105,93,91,110,93,41,59,74,46,104,97,115,68,97,116,97,40,101,41,38,38,40,115,61,74,46,97,99,99,101,115,115,40,101,41,44,117,61,107,46,101,120,116,101,110,100,40,123,125,44,115,41,44,74,46,115,101,116,40,116,44,117,41,41,125,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,114,44,105,44,111,41,123,114,61,103,46,97,112,112,108,121,40,91,93,44,114,41,59,118,97,114,32,101,44,116,44,97,44,115,44,117,44,108,44,99,61,48,44,102,61,110,46,108,101,110,103,116,104,44,112,61,102,45,49,44,100,61,114,91,48,93,44,104,61,109,40,100,41,59,105,102,40,104,124,124,49,60,102,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,100,38,38,33,121,46,99,104,101,99,107,67,108,111,110,101,38,38,76,101,46,116,101,115,116,40,100,41,41,114,101,116,117,114,110,32,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,46,101,113,40,101,41,59,104,38,38,40,114,91,48,93,61,100,46,99,97,108,108,40,116,104,105,115,44,101,44,116,46,104,116,109,108,40,41,41,41,44,73,101,40,116,44,114,44,105,44,111,41,125,41,59,105,102,40,102,38,38,40,116,61,40,101,61,119,101,40,114,44,110,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,33,49,44,110,44,111,41,41,46,102,105,114,115,116,67,104,105,108,100,44,49,61,61,61,101,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,38,38,40,101,61,116,41,44,116,124,124,111,41,41,123,102,111,114,40,115,61,40,97,61,107,46,109,97,112,40,118,101,40,101,44,34,115,99,114,105,112,116,34,41,44,80,101,41,41,46,108,101,110,103,116,104,59,99,60,102,59,99,43,43,41,117,61,101,44,99,33,61,61,112,38,38,40,117,61,107,46,99,108,111,110,101,40,117,44,33,48,44,33,48,41,44,115,38,38,107,46,109,101,114,103,101,40,97,44,118,101,40,117,44,34,115,99,114,105,112,116,34,41,41,41,44,105,46,99,97,108,108,40,110,91,99,93,44,117,44,99,41,59,105,102,40,115,41,102,111,114,40,108,61,97,91,97,46,108,101,110,103,116,104,45,49,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,107,46,109,97,112,40,97,44,82,101,41,44,99,61,48,59,99,60,115,59,99,43,43,41,117,61,97,91,99,93,44,104,101,46,116,101,115,116,40,117,46,116,121,112,101,124,124,34,34,41,38,38,33,81,46,97,99,99,101,115,115,40,117,44,34,103,108,111,98,97,108,69,118,97,108,34,41,38,38,107,46,99,111,110,116,97,105,110,115,40,108,44,117,41,38,38,40,117,46,115,114,99,38,38,34,109,111,100,117,108,101,34,33,61,61,40,117,46,116,121,112,101,124,124,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,63,107,46,95,101,118,97,108,85,114,108,38,38,33,117,46,110,111,77,111,100,117,108,101,38,38,107,46,95,101,118,97,108,85,114,108,40,117,46,115,114,99,44,123,110,111,110,99,101,58,117,46,110,111,110,99,101,124,124,117,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,110,111,110,99,101,34,41,125,41,58,98,40,117,46,116,101,120,116,67,111,110,116,101,110,116,46,114,101,112,108,97,99,101,40,72,101,44,34,34,41,44,117,44,108,41,41,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,87,101,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,116,63,107,46,102,105,108,116,101,114,40,116,44,101,41,58,101,44,111,61,48,59,110,117,108,108,33,61,40,114,61,105,91,111,93,41,59,111,43,43,41,110,124,124,49,33,61,61,114,46,110,111,100,101,84,121,112,101,124,124,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,114,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,38,38,40,110,38,38,111,101,40,114,41,38,38,121,101,40,118,101,40,114,44,34,115,99,114,105,112,116,34,41,41,44,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,114,41,41,59,114,101,116,117,114,110,32,101,125,107,46,101,120,116,101,110,100,40,123,104,116,109,108,80,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,114,101,112,108,97,99,101,40,106,101,44,34,60,36,49,62,60,47,36,50,62,34,41,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,61,101,46,99,108,111,110,101,78,111,100,101,40,33,48,41,44,102,61,111,101,40,101,41,59,105,102,40,33,40,121,46,110,111,67,108,111,110,101,67,104,101,99,107,101,100,124,124,49,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,101,46,110,111,100,101,84,121,112,101,124,124,107,46,105,115,88,77,76,68,111,99,40,101,41,41,41,102,111,114,40,97,61,118,101,40,99,41,44,114,61,48,44,105,61,40,111,61,118,101,40,101,41,41,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,61,111,91,114,93,44,117,61,97,91,114,93,44,118,111,105,100,32,48,44,34,105,110,112,117,116,34,61,61,61,40,108,61,117,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,38,38,112,101,46,116,101,115,116,40,115,46,116,121,112,101,41,63,117,46,99,104,101,99,107,101,100,61,115,46,99,104,101,99,107,101,100,58,34,105,110,112,117,116,34,33,61,61,108,38,38,34,116,101,120,116,97,114,101,97,34,33,61,61,108,124,124,40,117,46,100,101,102,97,117,108,116,86,97,108,117,101,61,115,46,100,101,102,97,117,108,116,86,97,108,117,101,41,59,105,102,40,116,41,105,102,40,110,41,102,111,114,40,111,61,111,124,124,118,101,40,101,41,44,97,61,97,124,124,118,101,40,99,41,44,114,61,48,44,105,61,111,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,77,101,40,111,91,114,93,44,97,91,114,93,41,59,101,108,115,101,32,77,101,40,101,44,99,41,59,114,101,116,117,114,110,32,48,60,40,97,61,118,101,40,99,44,34,115,99,114,105,112,116,34,41,41,46,108,101,110,103,116,104,38,38,121,101,40,97,44,33,102,38,38,118,101,40,101,44,34,115,99,114,105,112,116,34,41,41,44,99,125,44,99,108,101,97,110,68,97,116,97,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,44,114,44,105,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,44,111,61,48,59,118,111,105,100,32,48,33,61,61,40,110,61,101,91,111,93,41,59,111,43,43,41,105,102,40,71,40,110,41,41,123,105,102,40,116,61,110,91,81,46,101,120,112,97,110,100,111,93,41,123,105,102,40,116,46,101,118,101,110,116,115,41,102,111,114,40,114,32,105,110,32,116,46,101,118,101,110,116,115,41,105,91,114,93,63,107,46,101,118,101,110,116,46,114,101,109,111,118,101,40,110,44,114,41,58,107,46,114,101,109,111,118,101,69,118,101,110,116,40,110,44,114,44,116,46,104,97,110,100,108,101,41,59,110,91,81,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,125,110,91,74,46,101,120,112,97,110,100,111,93,38,38,40,110,91,74,46,101,120,112,97,110,100,111,93,61,118,111,105,100,32,48,41,125,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,100,101,116,97,99,104,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,44,33,48,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,87,101,40,116,104,105,115,44,101,41,125,44,116,101,120,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,63,107,46,116,101,120,116,40,116,104,105,115,41,58,116,104,105,115,46,101,109,112,116,121,40,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,40,116,104,105,115,46,116,101,120,116,67,111,110,116,101,110,116,61,101,41,125,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,49,49,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,57,33,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,79,101,40,116,104,105,115,44,101,41,46,97,112,112,101,110,100,67,104,105,108,100,40,101,41,125,41,125,44,112,114,101,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,49,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,124,124,57,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,116,61,79,101,40,116,104,105,115,44,101,41,59,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,46,102,105,114,115,116,67,104,105,108,100,41,125,125,41,125,44,98,101,102,111,114,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,41,125,41,125,44,97,102,116,101,114,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,101,44,116,104,105,115,46,110,101,120,116,83,105,98,108,105,110,103,41,125,41,125,44,101,109,112,116,121,58,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,110,117,108,108,33,61,40,101,61,116,104,105,115,91,116,93,41,59,116,43,43,41,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,101,44,33,49,41,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,99,108,111,110,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,101,61,110,117,108,108,33,61,101,38,38,101,44,116,61,110,117,108,108,61,61,116,63,101,58,116,44,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,99,108,111,110,101,40,116,104,105,115,44,101,44,116,41,125,41,125,44,104,116,109,108,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,91,48,93,124,124,123,125,44,110,61,48,44,114,61,116,104,105,115,46,108,101,110,103,116,104,59,105,102,40,118,111,105,100,32,48,61,61,61,101,38,38,49,61,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,32,116,46,105,110,110,101,114,72,84,77,76,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,33,113,101,46,116,101,115,116,40,101,41,38,38,33,103,101,91,40,100,101,46,101,120,101,99,40,101,41,124,124,91,34,34,44,34,34,93,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,123,101,61,107,46,104,116,109,108,80,114,101,102,105,108,116,101,114,40,101,41,59,116,114,121,123,102,111,114,40,59,110,60,114,59,110,43,43,41,49,61,61,61,40,116,61,116,104,105,115,91,110,93,124,124,123,125,41,46,110,111,100,101,84,121,112,101,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,44,33,49,41,41,44,116,46,105,110,110,101,114,72,84,77,76,61,101,41,59,116,61,48,125,99,97,116,99,104,40,101,41,123,125,125,116,38,38,116,104,105,115,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,125,44,110,117,108,108,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,112,108,97,99,101,87,105,116,104,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,91,93,59,114,101,116,117,114,110,32,73,101,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,97,114,101,110,116,78,111,100,101,59,107,46,105,110,65,114,114,97,121,40,116,104,105,115,44,110,41,60,48,38,38,40,107,46,99,108,101,97,110,68,97,116,97,40,118,101,40,116,104,105,115,41,41,44,116,38,38,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,101,44,116,104,105,115,41,41,125,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,97,112,112,101,110,100,84,111,58,34,97,112,112,101,110,100,34,44,112,114,101,112,101,110,100,84,111,58,34,112,114,101,112,101,110,100,34,44,105,110,115,101,114,116,66,101,102,111,114,101,58,34,98,101,102,111,114,101,34,44,105,110,115,101,114,116,65,102,116,101,114,58,34,97,102,116,101,114,34,44,114,101,112,108,97,99,101,65,108,108,58,34,114,101,112,108,97,99,101,87,105,116,104,34,125,44,102,117,110,99,116,105,111,110,40,101,44,97,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,44,110,61,91,93,44,114,61,107,40,101,41,44,105,61,114,46,108,101,110,103,116,104,45,49,44,111,61,48,59,111,60,61,105,59,111,43,43,41,116,61,111,61,61,61,105,63,116,104,105,115,58,116,104,105,115,46,99,108,111,110,101,40,33,48,41,44,107,40,114,91,111,93,41,91,97,93,40,116,41,44,117,46,97,112,112,108,121,40,110,44,116,46,103,101,116,40,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,117,115,104,83,116,97,99,107,40,110,41,125,125,41,59,118,97,114,32,36,101,61,110,101,119,32,82,101,103,69,120,112,40,34,94,40,34,43,116,101,43,34,41,40,63,33,112,120,41,91,97,45,122,37,93,43,36,34,44,34,105,34,41,44,70,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,59,114,101,116,117,114,110,32,116,38,38,116,46,111,112,101,110,101,114,124,124,40,116,61,67,41,44,116,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,125,44,66,101,61,110,101,119,32,82,101,103,69,120,112,40,114,101,46,106,111,105,110,40,34,124,34,41,44,34,105,34,41,59,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,115,116,121,108,101,59,114,101,116,117,114,110,40,110,61,110,124,124,70,101,40,101,41,41,38,38,40,34,34,33,61,61,40,97,61,110,46,103,101,116,80,114,111,112,101,114,116,121,86,97,108,117,101,40,116,41,124,124,110,91,116,93,41,124,124,111,101,40,101,41,124,124,40,97,61,107,46,115,116,121,108,101,40,101,44,116,41,41,44,33,121,46,112,105,120,101,108,66,111,120,83,116,121,108,101,115,40,41,38,38,36,101,46,116,101,115,116,40,97,41,38,38,66,101,46,116,101,115,116,40,116,41,38,38,40,114,61,115,46,119,105,100,116,104,44,105,61,115,46,109,105,110,87,105,100,116,104,44,111,61,115,46,109,97,120,87,105,100,116,104,44,115,46,109,105,110,87,105,100,116,104,61,115,46,109,97,120,87,105,100,116,104,61,115,46,119,105,100,116,104,61,97,44,97,61,110,46,119,105,100,116,104,44,115,46,119,105,100,116,104,61,114,44,115,46,109,105,110,87,105,100,116,104,61,105,44,115,46,109,97,120,87,105,100,116,104,61,111,41,41,44,118,111,105,100,32,48,33,61,61,97,63,97,43,34,34,58,97,125,102,117,110,99,116,105,111,110,32,122,101,40,101,44,116,41,123,114,101,116,117,114,110,123,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,101,40,41,41,114,101,116,117,114,110,40,116,104,105,115,46,103,101,116,61,116,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,59,100,101,108,101,116,101,32,116,104,105,115,46,103,101,116,125,125,125,33,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,105,102,40,117,41,123,115,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,97,98,115,111,108,117,116,101,59,108,101,102,116,58,45,49,49,49,49,49,112,120,59,119,105,100,116,104,58,54,48,112,120,59,109,97,114,103,105,110,45,116,111,112,58,49,112,120,59,112,97,100,100,105,110,103,58,48,59,98,111,114,100,101,114,58,48,34,44,117,46,115,116,121,108,101,46,99,115,115,84,101,120,116,61,34,112,111,115,105,116,105,111,110,58,114,101,108,97,116,105,118,101,59,100,105,115,112,108,97,121,58,98,108,111,99,107,59,98,111,120,45,115,105,122,105,110,103,58,98,111,114,100,101,114,45,98,111,120,59,111,118,101,114,102,108,111,119,58,115,99,114,111,108,108,59,109,97,114,103,105,110,58,97,117,116,111,59,98,111,114,100,101,114,58,49,112,120,59,112,97,100,100,105,110,103,58,49,112,120,59,119,105,100,116,104,58,54,48,37,59,116,111,112,58,49,37,34,44,105,101,46,97,112,112,101,110,100,67,104,105,108,100,40,115,41,46,97,112,112,101,110,100,67,104,105,108,100,40,117,41,59,118,97,114,32,101,61,67,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,117,41,59,110,61,34,49,37,34,33,61,61,101,46,116,111,112,44,97,61,49,50,61,61,61,116,40,101,46,109,97,114,103,105,110,76,101,102,116,41,44,117,46,115,116,121,108,101,46,114,105,103,104,116,61,34,54,48,37,34,44,111,61,51,54,61,61,61,116,40,101,46,114,105,103,104,116,41,44,114,61,51,54,61,61,61,116,40,101,46,119,105,100,116,104,41,44,117,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,97,98,115,111,108,117,116,101,34,44,105,61,49,50,61,61,61,116,40,117,46,111,102,102,115,101,116,87,105,100,116,104,47,51,41,44,105,101,46,114,101,109,111,118,101,67,104,105,108,100,40,115,41,44,117,61,110,117,108,108,125,125,102,117,110,99,116,105,111,110,32,116,40,101,41,123,114,101,116,117,114,110,32,77,97,116,104,46,114,111,117,110,100,40,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,118,97,114,32,110,44,114,44,105,44,111,44,97,44,115,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,117,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,117,46,115,116,121,108,101,38,38,40,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,99,111,110,116,101,110,116,45,98,111,120,34,44,117,46,99,108,111,110,101,78,111,100,101,40,33,48,41,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,61,34,34,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,61,34,99,111,110,116,101,110,116,45,98,111,120,34,61,61,61,117,46,115,116,121,108,101,46,98,97,99,107,103,114,111,117,110,100,67,108,105,112,44,107,46,101,120,116,101,110,100,40,121,44,123,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,114,125,44,112,105,120,101,108,66,111,120,83,116,121,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,111,125,44,112,105,120,101,108,80,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,110,125,44,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,97,125,44,115,99,114,111,108,108,98,111,120,83,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,41,44,105,125,125,41,41,125,40,41,59,118,97,114,32,85,101,61,91,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,109,115,34,93,44,88,101,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,46,115,116,121,108,101,44,86,101,61,123,125,59,102,117,110,99,116,105,111,110,32,71,101,40,101,41,123,118,97,114,32,116,61,107,46,99,115,115,80,114,111,112,115,91,101,93,124,124,86,101,91,101,93,59,114,101,116,117,114,110,32,116,124,124,40,101,32,105,110,32,88,101,63,101,58,86,101,91,101,93,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,101,46,115,108,105,99,101,40,49,41,44,110,61,85,101,46,108,101,110,103,116,104,59,119,104,105,108,101,40,110,45,45,41,105,102,40,40,101,61,85,101,91,110,93,43,116,41,105,110,32,88,101,41,114,101,116,117,114,110,32,101,125,40,101,41,124,124,101,41,125,118,97,114,32,89,101,61,47,94,40,110,111,110,101,124,116,97,98,108,101,40,63,33,45,99,91,101,97,93,41,46,43,41,47,44,81,101,61,47,94,45,45,47,44,74,101,61,123,112,111,115,105,116,105,111,110,58,34,97,98,115,111,108,117,116,101,34,44,118,105,115,105,98,105,108,105,116,121,58,34,104,105,100,100,101,110,34,44,100,105,115,112,108,97,121,58,34,98,108,111,99,107,34,125,44,75,101,61,123,108,101,116,116,101,114,83,112,97,99,105,110,103,58,34,48,34,44,102,111,110,116,87,101,105,103,104,116,58,34,52,48,48,34,125,59,102,117,110,99,116,105,111,110,32,90,101,40,101,44,116,44,110,41,123,118,97,114,32,114,61,110,101,46,101,120,101,99,40,116,41,59,114,101,116,117,114,110,32,114,63,77,97,116,104,46,109,97,120,40,48,44,114,91,50,93,45,40,110,124,124,48,41,41,43,40,114,91,51,93,124,124,34,112,120,34,41,58,116,125,102,117,110,99,116,105,111,110,32,101,116,40,101,44,116,44,110,44,114,44,105,44,111,41,123,118,97,114,32,97,61,34,119,105,100,116,104,34,61,61,61,116,63,49,58,48,44,115,61,48,44,117,61,48,59,105,102,40,110,61,61,61,40,114,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,41,114,101,116,117,114,110,32,48,59,102,111,114,40,59,97,60,52,59,97,43,61,50,41,34,109,97,114,103,105,110,34,61,61,61,110,38,38,40,117,43,61,107,46,99,115,115,40,101,44,110,43,114,101,91,97,93,44,33,48,44,105,41,41,44,114,63,40,34,99,111,110,116,101,110,116,34,61,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,41,44,34,109,97,114,103,105,110,34,33,61,61,110,38,38,40,117,45,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,41,58,40,117,43,61,107,46,99,115,115,40,101,44,34,112,97,100,100,105,110,103,34,43,114,101,91,97,93,44,33,48,44,105,41,44,34,112,97,100,100,105,110,103,34,33,61,61,110,63,117,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,58,115,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,34,43,114,101,91,97,93,43,34,87,105,100,116,104,34,44,33,48,44,105,41,41,59,114,101,116,117,114,110,33,114,38,38,48,60,61,111,38,38,40,117,43,61,77,97,116,104,46,109,97,120,40,48,44,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,93,45,111,45,117,45,115,45,46,53,41,41,124,124,48,41,44,117,125,102,117,110,99,116,105,111,110,32,116,116,40,101,44,116,44,110,41,123,118,97,114,32,114,61,70,101,40,101,41,44,105,61,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,111,61,105,44,97,61,95,101,40,101,44,116,44,114,41,44,115,61,34,111,102,102,115,101,116,34,43,116,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,59,105,102,40,36,101,46,116,101,115,116,40,97,41,41,123,105,102,40,33,110,41,114,101,116,117,114,110,32,97,59,97,61,34,97,117,116,111,34,125,114,101,116,117,114,110,40,33,121,46,98,111,120,83,105,122,105,110,103,82,101,108,105,97,98,108,101,40,41,38,38,105,124,124,34,97,117,116,111,34,61,61,61,97,124,124,33,112,97,114,115,101,70,108,111,97,116,40,97,41,38,38,34,105,110,108,105,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,44,33,49,44,114,41,41,38,38,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,40,105,61,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,114,41,44,40,111,61,115,32,105,110,32,101,41,38,38,40,97,61,101,91,115,93,41,41,44,40,97,61,112,97,114,115,101,70,108,111,97,116,40,97,41,124,124,48,41,43,101,116,40,101,44,116,44,110,124,124,40,105,63,34,98,111,114,100,101,114,34,58,34,99,111,110,116,101,110,116,34,41,44,111,44,114,44,97,41,43,34,112,120,34,125,102,117,110,99,116,105,111,110,32,110,116,40,101,44,116,44,110,44,114,44,105,41,123,114,101,116,117,114,110,32,110,101,119,32,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,40,101,44,116,44,110,44,114,44,105,41,125,107,46,101,120,116,101,110,100,40,123,99,115,115,72,111,111,107,115,58,123,111,112,97,99,105,116,121,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,123,118,97,114,32,110,61,95,101,40,101,44,34,111,112,97,99,105,116,121,34,41,59,114,101,116,117,114,110,34,34,61,61,61,110,63,34,49,34,58,110,125,125,125,125,44,99,115,115,78,117,109,98,101,114,58,123,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,58,33,48,44,99,111,108,117,109,110,67,111,117,110,116,58,33,48,44,102,105,108,108,79,112,97,99,105,116,121,58,33,48,44,102,108,101,120,71,114,111,119,58,33,48,44,102,108,101,120,83,104,114,105,110,107,58,33,48,44,102,111,110,116,87,101,105,103,104,116,58,33,48,44,103,114,105,100,65,114,101,97,58,33,48,44,103,114,105,100,67,111,108,117,109,110,58,33,48,44,103,114,105,100,67,111,108,117,109,110,69,110,100,58,33,48,44,103,114,105,100,67,111,108,117,109,110,83,116,97,114,116,58,33,48,44,103,114,105,100,82,111,119,58,33,48,44,103,114,105,100,82,111,119,69,110,100,58,33,48,44,103,114,105,100,82,111,119,83,116,97,114,116,58,33,48,44,108,105,110,101,72,101,105,103,104,116,58,33,48,44,111,112,97,99,105,116,121,58,33,48,44,111,114,100,101,114,58,33,48,44,111,114,112,104,97,110,115,58,33,48,44,119,105,100,111,119,115,58,33,48,44,122,73,110,100,101,120,58,33,48,44,122,111,111,109,58,33,48,125,44,99,115,115,80,114,111,112,115,58,123,125,44,115,116,121,108,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,105,102,40,101,38,38,51,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,101,46,110,111,100,101,84,121,112,101,38,38,101,46,115,116,121,108,101,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,44,117,61,81,101,46,116,101,115,116,40,116,41,44,108,61,101,46,115,116,121,108,101,59,105,102,40,117,124,124,40,116,61,71,101,40,115,41,41,44,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,97,38,38,34,103,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,33,61,61,40,105,61,97,46,103,101,116,40,101,44,33,49,44,114,41,41,63,105,58,108,91,116,93,59,34,115,116,114,105,110,103,34,61,61,61,40,111,61,116,121,112,101,111,102,32,110,41,38,38,40,105,61,110,101,46,101,120,101,99,40,110,41,41,38,38,105,91,49,93,38,38,40,110,61,108,101,40,101,44,116,44,105,41,44,111,61,34,110,117,109,98,101,114,34,41,44,110,117,108,108,33,61,110,38,38,110,61,61,110,38,38,40,34,110,117,109,98,101,114,34,33,61,61,111,124,124,117,124,124,40,110,43,61,105,38,38,105,91,51,93,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,115,93,63,34,34,58,34,112,120,34,41,41,44,121,46,99,108,101,97,114,67,108,111,110,101,83,116,121,108,101,124,124,34,34,33,61,61,110,124,124,48,33,61,61,116,46,105,110,100,101,120,79,102,40,34,98,97,99,107,103,114,111,117,110,100,34,41,124,124,40,108,91,116,93,61,34,105,110,104,101,114,105,116,34,41,44,97,38,38,34,115,101,116,34,105,110,32,97,38,38,118,111,105,100,32,48,61,61,61,40,110,61,97,46,115,101,116,40,101,44,110,44,114,41,41,124,124,40,117,63,108,46,115,101,116,80,114,111,112,101,114,116,121,40,116,44,110,41,58,108,91,116,93,61,110,41,41,125,125,44,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,61,86,40,116,41,59,114,101,116,117,114,110,32,81,101,46,116,101,115,116,40,116,41,124,124,40,116,61,71,101,40,115,41,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,116,93,124,124,107,46,99,115,115,72,111,111,107,115,91,115,93,41,38,38,34,103,101,116,34,105,110,32,97,38,38,40,105,61,97,46,103,101,116,40,101,44,33,48,44,110,41,41,44,118,111,105,100,32,48,61,61,61,105,38,38,40,105,61,95,101,40,101,44,116,44,114,41,41,44,34,110,111,114,109,97,108,34,61,61,61,105,38,38,116,32,105,110,32,75,101,38,38,40,105,61,75,101,91,116,93,41,44,34,34,61,61,61,110,124,124,110,63,40,111,61,112,97,114,115,101,70,108,111,97,116,40,105,41,44,33,48,61,61,61,110,124,124,105,115,70,105,110,105,116,101,40,111,41,63,111,124,124,48,58,105,41,58,105,125,125,41,44,107,46,101,97,99,104,40,91,34,104,101,105,103,104,116,34,44,34,119,105,100,116,104,34,93,44,102,117,110,99,116,105,111,110,40,101,44,117,41,123,107,46,99,115,115,72,111,111,107,115,91,117,93,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,105,102,40,116,41,114,101,116,117,114,110,33,89,101,46,116,101,115,116,40,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,38,38,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,63,116,116,40,101,44,117,44,110,41,58,117,101,40,101,44,74,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,116,40,101,44,117,44,110,41,125,41,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,61,70,101,40,101,41,44,111,61,33,121,46,115,99,114,111,108,108,98,111,120,83,105,122,101,40,41,38,38,34,97,98,115,111,108,117,116,101,34,61,61,61,105,46,112,111,115,105,116,105,111,110,44,97,61,40,111,124,124,110,41,38,38,34,98,111,114,100,101,114,45,98,111,120,34,61,61,61,107,46,99,115,115,40,101,44,34,98,111,120,83,105,122,105,110,103,34,44,33,49,44,105,41,44,115,61,110,63,101,116,40,101,44,117,44,110,44,97,44,105,41,58,48,59,114,101,116,117,114,110,32,97,38,38,111,38,38,40,115,45,61,77,97,116,104,46,99,101,105,108,40,101,91,34,111,102,102,115,101,116,34,43,117,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,117,46,115,108,105,99,101,40,49,41,93,45,112,97,114,115,101,70,108,111,97,116,40,105,91,117,93,41,45,101,116,40,101,44,117,44,34,98,111,114,100,101,114,34,44,33,49,44,105,41,45,46,53,41,41,44,115,38,38,40,114,61,110,101,46,101,120,101,99,40,116,41,41,38,38,34,112,120,34,33,61,61,40,114,91,51,93,124,124,34,112,120,34,41,38,38,40,101,46,115,116,121,108,101,91,117,93,61,116,44,116,61,107,46,99,115,115,40,101,44,117,41,41,44,90,101,40,48,44,116,44,115,41,125,125,125,41,44,107,46,99,115,115,72,111,111,107,115,46,109,97,114,103,105,110,76,101,102,116,61,122,101,40,121,46,114,101,108,105,97,98,108,101,77,97,114,103,105,110,76,101,102,116,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,40,112,97,114,115,101,70,108,111,97,116,40,95,101,40,101,44,34,109,97,114,103,105,110,76,101,102,116,34,41,41,124,124,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,45,117,101,40,101,44,123,109,97,114,103,105,110,76,101,102,116,58,48,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,108,101,102,116,125,41,41,43,34,112,120,34,125,41,44,107,46,101,97,99,104,40,123,109,97,114,103,105,110,58,34,34,44,112,97,100,100,105,110,103,58,34,34,44,98,111,114,100,101,114,58,34,87,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,61,123,101,120,112,97,110,100,58,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,123,125,44,114,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,34,32,34,41,58,91,101,93,59,116,60,52,59,116,43,43,41,110,91,105,43,114,101,91,116,93,43,111,93,61,114,91,116,93,124,124,114,91,116,45,50,93,124,124,114,91,48,93,59,114,101,116,117,114,110,32,110,125,125,44,34,109,97,114,103,105,110,34,33,61,61,105,38,38,40,107,46,99,115,115,72,111,111,107,115,91,105,43,111,93,46,115,101,116,61,90,101,41,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,99,115,115,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,123,125,44,97,61,48,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,123,102,111,114,40,114,61,70,101,40,101,41,44,105,61,116,46,108,101,110,103,116,104,59,97,60,105,59,97,43,43,41,111,91,116,91,97,93,93,61,107,46,99,115,115,40,101,44,116,91,97,93,44,33,49,44,114,41,59,114,101,116,117,114,110,32,111,125,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,110,63,107,46,115,116,121,108,101,40,101,44,116,44,110,41,58,107,46,99,115,115,40,101,44,116,41,125,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,40,40,107,46,84,119,101,101,110,61,110,116,41,46,112,114,111,116,111,116,121,112,101,61,123,99,111,110,115,116,114,117,99,116,111,114,58,110,116,44,105,110,105,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,44,105,44,111,41,123,116,104,105,115,46,101,108,101,109,61,101,44,116,104,105,115,46,112,114,111,112,61,110,44,116,104,105,115,46,101,97,115,105,110,103,61,105,124,124,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,44,116,104,105,115,46,115,116,97,114,116,61,116,104,105,115,46,110,111,119,61,116,104,105,115,46,99,117,114,40,41,44,116,104,105,115,46,101,110,100,61,114,44,116,104,105,115,46,117,110,105,116,61,111,124,124,40,107,46,99,115,115,78,117,109,98,101,114,91,110,93,63,34,34,58,34,112,120,34,41,125,44,99,117,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,101,38,38,101,46,103,101,116,63,101,46,103,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,103,101,116,40,116,104,105,115,41,125,44,114,117,110,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,110,116,46,112,114,111,112,72,111,111,107,115,91,116,104,105,115,46,112,114,111,112,93,59,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,63,116,104,105,115,46,112,111,115,61,116,61,107,46,101,97,115,105,110,103,91,116,104,105,115,46,101,97,115,105,110,103,93,40,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,42,101,44,48,44,49,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,117,114,97,116,105,111,110,41,58,116,104,105,115,46,112,111,115,61,116,61,101,44,116,104,105,115,46,110,111,119,61,40,116,104,105,115,46,101,110,100,45,116,104,105,115,46,115,116,97,114,116,41,42,116,43,116,104,105,115,46,115,116,97,114,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,38,38,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,44,116,104,105,115,46,110,111,119,44,116,104,105,115,41,44,110,38,38,110,46,115,101,116,63,110,46,115,101,116,40,116,104,105,115,41,58,110,116,46,112,114,111,112,72,111,111,107,115,46,95,100,101,102,97,117,108,116,46,115,101,116,40,116,104,105,115,41,44,116,104,105,115,125,125,41,46,105,110,105,116,46,112,114,111,116,111,116,121,112,101,61,110,116,46,112,114,111,116,111,116,121,112,101,44,40,110,116,46,112,114,111,112,72,111,111,107,115,61,123,95,100,101,102,97,117,108,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,110,117,108,108,33,61,101,46,101,108,101,109,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,101,46,112,114,111,112,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,58,40,116,61,107,46,99,115,115,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,34,34,41,41,38,38,34,97,117,116,111,34,33,61,61,116,63,116,58,48,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,63,107,46,102,120,46,115,116,101,112,91,101,46,112,114,111,112,93,40,101,41,58,49,33,61,61,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,124,124,33,107,46,99,115,115,72,111,111,107,115,91,101,46,112,114,111,112,93,38,38,110,117,108,108,61,61,101,46,101,108,101,109,46,115,116,121,108,101,91,71,101,40,101,46,112,114,111,112,41,93,63,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,58,107,46,115,116,121,108,101,40,101,46,101,108,101,109,44,101,46,112,114,111,112,44,101,46,110,111,119,43,101,46,117,110,105,116,41,125,125,125,41,46,115,99,114,111,108,108,84,111,112,61,110,116,46,112,114,111,112,72,111,111,107,115,46,115,99,114,111,108,108,76,101,102,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,108,101,109,46,110,111,100,101,84,121,112,101,38,38,101,46,101,108,101,109,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,46,101,108,101,109,91,101,46,112,114,111,112,93,61,101,46,110,111,119,41,125,125,44,107,46,101,97,115,105,110,103,61,123,108,105,110,101,97,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,125,44,115,119,105,110,103,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,46,53,45,77,97,116,104,46,99,111,115,40,101,42,77,97,116,104,46,80,73,41,47,50,125,44,95,100,101,102,97,117,108,116,58,34,115,119,105,110,103,34,125,44,107,46,102,120,61,110,116,46,112,114,111,116,111,116,121,112,101,46,105,110,105,116,44,107,46,102,120,46,115,116,101,112,61,123,125,59,118,97,114,32,114,116,44,105,116,44,111,116,44,97,116,44,115,116,61,47,94,40,63,58,116,111,103,103,108,101,124,115,104,111,119,124,104,105,100,101,41,36,47,44,117,116,61,47,113,117,101,117,101,72,111,111,107,115,36,47,59,102,117,110,99,116,105,111,110,32,108,116,40,41,123,105,116,38,38,40,33,49,61,61,61,69,46,104,105,100,100,101,110,38,38,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,67,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,108,116,41,58,67,46,115,101,116,84,105,109,101,111,117,116,40,108,116,44,107,46,102,120,46,105,110,116,101,114,118,97,108,41,44,107,46,102,120,46,116,105,99,107,40,41,41,125,102,117,110,99,116,105,111,110,32,99,116,40,41,123,114,101,116,117,114,110,32,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,116,61,118,111,105,100,32,48,125,41,44,114,116,61,68,97,116,101,46,110,111,119,40,41,125,102,117,110,99,116,105,111,110,32,102,116,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,123,104,101,105,103,104,116,58,101,125,59,102,111,114,40,116,61,116,63,49,58,48,59,114,60,52,59,114,43,61,50,45,116,41,105,91,34,109,97,114,103,105,110,34,43,40,110,61,114,101,91,114,93,41,93,61,105,91,34,112,97,100,100,105,110,103,34,43,110,93,61,101,59,114,101,116,117,114,110,32,116,38,38,40,105,46,111,112,97,99,105,116,121,61,105,46,119,105,100,116,104,61,101,41,44,105,125,102,117,110,99,116,105,111,110,32,112,116,40,101,44,116,44,110,41,123,102,111,114,40,118,97,114,32,114,44,105,61,40,100,116,46,116,119,101,101,110,101,114,115,91,116,93,124,124,91,93,41,46,99,111,110,99,97,116,40,100,116,46,116,119,101,101,110,101,114,115,91,34,42,34,93,41,44,111,61,48,44,97,61,105,46,108,101,110,103,116,104,59,111,60,97,59,111,43,43,41,105,102,40,114,61,105,91,111,93,46,99,97,108,108,40,110,44,116,44,101,41,41,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,100,116,40,111,44,101,44,116,41,123,118,97,114,32,110,44,97,44,114,61,48,44,105,61,100,116,46,112,114,101,102,105,108,116,101,114,115,46,108,101,110,103,116,104,44,115,61,107,46,68,101,102,101,114,114,101,100,40,41,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,117,46,101,108,101,109,125,41,44,117,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,97,41,114,101,116,117,114,110,33,49,59,102,111,114,40,118,97,114,32,101,61,114,116,124,124,99,116,40,41,44,116,61,77,97,116,104,46,109,97,120,40,48,44,108,46,115,116,97,114,116,84,105,109,101,43,108,46,100,117,114,97,116,105,111,110,45,101,41,44,110,61,49,45,40,116,47,108,46,100,117,114,97,116,105,111,110,124,124,48,41,44,114,61,48,44,105,61,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,108,46,116,119,101,101,110,115,91,114,93,46,114,117,110,40,110,41,59,114,101,116,117,114,110,32,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,110,44,116,93,41,44,110,60,49,38,38,105,63,116,58,40,105,124,124,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,93,41,44,33,49,41,125,44,108,61,115,46,112,114,111,109,105,115,101,40,123,101,108,101,109,58,111,44,112,114,111,112,115,58,107,46,101,120,116,101,110,100,40,123,125,44,101,41,44,111,112,116,115,58,107,46,101,120,116,101,110,100,40,33,48,44,123,115,112,101,99,105,97,108,69,97,115,105,110,103,58,123,125,44,101,97,115,105,110,103,58,107,46,101,97,115,105,110,103,46,95,100,101,102,97,117,108,116,125,44,116,41,44,111,114,105,103,105,110,97,108,80,114,111,112,101,114,116,105,101,115,58,101,44,111,114,105,103,105,110,97,108,79,112,116,105,111,110,115,58,116,44,115,116,97,114,116,84,105,109,101,58,114,116,124,124,99,116,40,41,44,100,117,114,97,116,105,111,110,58,116,46,100,117,114,97,116,105,111,110,44,116,119,101,101,110,115,58,91,93,44,99,114,101,97,116,101,84,119,101,101,110,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,46,84,119,101,101,110,40,111,44,108,46,111,112,116,115,44,101,44,116,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,91,101,93,124,124,108,46,111,112,116,115,46,101,97,115,105,110,103,41,59,114,101,116,117,114,110,32,108,46,116,119,101,101,110,115,46,112,117,115,104,40,110,41,44,110,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,48,44,110,61,101,63,108,46,116,119,101,101,110,115,46,108,101,110,103,116,104,58,48,59,105,102,40,97,41,114,101,116,117,114,110,32,116,104,105,115,59,102,111,114,40,97,61,33,48,59,116,60,110,59,116,43,43,41,108,46,116,119,101,101,110,115,91,116,93,46,114,117,110,40,49,41,59,114,101,116,117,114,110,32,101,63,40,115,46,110,111,116,105,102,121,87,105,116,104,40,111,44,91,108,44,49,44,48,93,41,44,115,46,114,101,115,111,108,118,101,87,105,116,104,40,111,44,91,108,44,101,93,41,41,58,115,46,114,101,106,101,99,116,87,105,116,104,40,111,44,91,108,44,101,93,41,44,116,104,105,115,125,125,41,44,99,61,108,46,112,114,111,112,115,59,102,111,114,40,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,44,111,44,97,59,102,111,114,40,110,32,105,110,32,101,41,105,102,40,105,61,116,91,114,61,86,40,110,41,93,44,111,61,101,91,110,93,44,65,114,114,97,121,46,105,115,65,114,114,97,121,40,111,41,38,38,40,105,61,111,91,49,93,44,111,61,101,91,110,93,61,111,91,48,93,41,44,110,33,61,61,114,38,38,40,101,91,114,93,61,111,44,100,101,108,101,116,101,32,101,91,110,93,41,44,40,97,61,107,46,99,115,115,72,111,111,107,115,91,114,93,41,38,38,34,101,120,112,97,110,100,34,105,110,32,97,41,102,111,114,40,110,32,105,110,32,111,61,97,46,101,120,112,97,110,100,40,111,41,44,100,101,108,101,116,101,32,101,91,114,93,44,111,41,110,32,105,110,32,101,124,124,40,101,91,110,93,61,111,91,110,93,44,116,91,110,93,61,105,41,59,101,108,115,101,32,116,91,114,93,61,105,125,40,99,44,108,46,111,112,116,115,46,115,112,101,99,105,97,108,69,97,115,105,110,103,41,59,114,60,105,59,114,43,43,41,105,102,40,110,61,100,116,46,112,114,101,102,105,108,116,101,114,115,91,114,93,46,99,97,108,108,40,108,44,111,44,99,44,108,46,111,112,116,115,41,41,114,101,116,117,114,110,32,109,40,110,46,115,116,111,112,41,38,38,40,107,46,95,113,117,101,117,101,72,111,111,107,115,40,108,46,101,108,101,109,44,108,46,111,112,116,115,46,113,117,101,117,101,41,46,115,116,111,112,61,110,46,115,116,111,112,46,98,105,110,100,40,110,41,41,44,110,59,114,101,116,117,114,110,32,107,46,109,97,112,40,99,44,112,116,44,108,41,44,109,40,108,46,111,112,116,115,46,115,116,97,114,116,41,38,38,108,46,111,112,116,115,46,115,116,97,114,116,46,99,97,108,108,40,111,44,108,41,44,108,46,112,114,111,103,114,101,115,115,40,108,46,111,112,116,115,46,112,114,111,103,114,101,115,115,41,46,100,111,110,101,40,108,46,111,112,116,115,46,100,111,110,101,44,108,46,111,112,116,115,46,99,111,109,112,108,101,116,101,41,46,102,97,105,108,40,108,46,111,112,116,115,46,102,97,105,108,41,46,97,108,119,97,121,115,40,108,46,111,112,116,115,46,97,108,119,97,121,115,41,44,107,46,102,120,46,116,105,109,101,114,40,107,46,101,120,116,101,110,100,40,117,44,123,101,108,101,109,58,111,44,97,110,105,109,58,108,44,113,117,101,117,101,58,108,46,111,112,116,115,46,113,117,101,117,101,125,41,41,44,108,125,107,46,65,110,105,109,97,116,105,111,110,61,107,46,101,120,116,101,110,100,40,100,116,44,123,116,119,101,101,110,101,114,115,58,123,34,42,34,58,91,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,99,114,101,97,116,101,84,119,101,101,110,40,101,44,116,41,59,114,101,116,117,114,110,32,108,101,40,110,46,101,108,101,109,44,101,44,110,101,46,101,120,101,99,40,116,41,44,110,41,44,110,125,93,125,44,116,119,101,101,110,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,109,40,101,41,63,40,116,61,101,44,101,61,91,34,42,34,93,41,58,101,61,101,46,109,97,116,99,104,40,82,41,59,102,111,114,40,118,97,114,32,110,44,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,110,61,101,91,114,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,61,100,116,46,116,119,101,101,110,101,114,115,91,110,93,124,124,91,93,44,100,116,46,116,119,101,101,110,101,114,115,91,110,93,46,117,110,115,104,105,102,116,40,116,41,125,44,112,114,101,102,105,108,116,101,114,115,58,91,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,61,34,119,105,100,116,104,34,105,110,32,116,124,124,34,104,101,105,103,104,116,34,105,110,32,116,44,112,61,116,104,105,115,44,100,61,123,125,44,104,61,101,46,115,116,121,108,101,44,103,61,101,46,110,111,100,101,84,121,112,101,38,38,115,101,40,101,41,44,118,61,81,46,103,101,116,40,101,44,34,102,120,115,104,111,119,34,41,59,102,111,114,40,114,32,105,110,32,110,46,113,117,101,117,101,124,124,40,110,117,108,108,61,61,40,97,61,107,46,95,113,117,101,117,101,72,111,111,107,115,40,101,44,34,102,120,34,41,41,46,117,110,113,117,101,117,101,100,38,38,40,97,46,117,110,113,117,101,117,101,100,61,48,44,115,61,97,46,101,109,112,116,121,46,102,105,114,101,44,97,46,101,109,112,116,121,46,102,105,114,101,61,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,124,124,115,40,41,125,41,44,97,46,117,110,113,117,101,117,101,100,43,43,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,97,46,117,110,113,117,101,117,101,100,45,45,44,107,46,113,117,101,117,101,40,101,44,34,102,120,34,41,46,108,101,110,103,116,104,124,124,97,46,101,109,112,116,121,46,102,105,114,101,40,41,125,41,125,41,41,44,116,41,105,102,40,105,61,116,91,114,93,44,115,116,46,116,101,115,116,40,105,41,41,123,105,102,40,100,101,108,101,116,101,32,116,91,114,93,44,111,61,111,124,124,34,116,111,103,103,108,101,34,61,61,61,105,44,105,61,61,61,40,103,63,34,104,105,100,101,34,58,34,115,104,111,119,34,41,41,123,105,102,40,34,115,104,111,119,34,33,61,61,105,124,124,33,118,124,124,118,111,105,100,32,48,61,61,61,118,91,114,93,41,99,111,110,116,105,110,117,101,59,103,61,33,48,125,100,91,114,93,61,118,38,38,118,91,114,93,124,124,107,46,115,116,121,108,101,40,101,44,114,41,125,105,102,40,40,117,61,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,41,124,124,33,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,100,41,41,102,111,114,40,114,32,105,110,32,102,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,110,46,111,118,101,114,102,108,111,119,61,91,104,46,111,118,101,114,102,108,111,119,44,104,46,111,118,101,114,102,108,111,119,88,44,104,46,111,118,101,114,102,108,111,119,89,93,44,110,117,108,108,61,61,40,108,61,118,38,38,118,46,100,105,115,112,108,97,121,41,38,38,40,108,61,81,46,103,101,116,40,101,44,34,100,105,115,112,108,97,121,34,41,41,44,34,110,111,110,101,34,61,61,61,40,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,41,38,38,40,108,63,99,61,108,58,40,102,101,40,91,101,93,44,33,48,41,44,108,61,101,46,115,116,121,108,101,46,100,105,115,112,108,97,121,124,124,108,44,99,61,107,46,99,115,115,40,101,44,34,100,105,115,112,108,97,121,34,41,44,102,101,40,91,101,93,41,41,41,44,40,34,105,110,108,105,110,101,34,61,61,61,99,124,124,34,105,110,108,105,110,101,45,98,108,111,99,107,34,61,61,61,99,38,38,110,117,108,108,33,61,108,41,38,38,34,110,111,110,101,34,61,61,61,107,46,99,115,115,40,101,44,34,102,108,111,97,116,34,41,38,38,40,117,124,124,40,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,104,46,100,105,115,112,108,97,121,61,108,125,41,44,110,117,108,108,61,61,108,38,38,40,99,61,104,46,100,105,115,112,108,97,121,44,108,61,34,110,111,110,101,34,61,61,61,99,63,34,34,58,99,41,41,44,104,46,100,105,115,112,108,97,121,61,34,105,110,108,105,110,101,45,98,108,111,99,107,34,41,41,44,110,46,111,118,101,114,102,108,111,119,38,38,40,104,46,111,118,101,114,102,108,111,119,61,34,104,105,100,100,101,110,34,44,112,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,104,46,111,118,101,114,102,108,111,119,61,110,46,111,118,101,114,102,108,111,119,91,48,93,44,104,46,111,118,101,114,102,108,111,119,88,61,110,46,111,118,101,114,102,108,111,119,91,49,93,44,104,46,111,118,101,114,102,108,111,119,89,61,110,46,111,118,101,114,102,108,111,119,91,50,93,125,41,41,44,117,61,33,49,44,100,41,117,124,124,40,118,63,34,104,105,100,100,101,110,34,105,110,32,118,38,38,40,103,61,118,46,104,105,100,100,101,110,41,58,118,61,81,46,97,99,99,101,115,115,40,101,44,34,102,120,115,104,111,119,34,44,123,100,105,115,112,108,97,121,58,108,125,41,44,111,38,38,40,118,46,104,105,100,100,101,110,61,33,103,41,44,103,38,38,102,101,40,91,101,93,44,33,48,41,44,112,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,114,32,105,110,32,103,124,124,102,101,40,91,101,93,41,44,81,46,114,101,109,111,118,101,40,101,44,34,102,120,115,104,111,119,34,41,44,100,41,107,46,115,116,121,108,101,40,101,44,114,44,100,91,114,93,41,125,41,41,44,117,61,112,116,40,103,63,118,91,114,93,58,48,44,114,44,112,41,44,114,32,105,110,32,118,124,124,40,118,91,114,93,61,117,46,115,116,97,114,116,44,103,38,38,40,117,46,101,110,100,61,117,46,115,116,97,114,116,44,117,46,115,116,97,114,116,61,48,41,41,125,93,44,112,114,101,102,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,63,100,116,46,112,114,101,102,105,108,116,101,114,115,46,117,110,115,104,105,102,116,40,101,41,58,100,116,46,112,114,101,102,105,108,116,101,114,115,46,112,117,115,104,40,101,41,125,125,41,44,107,46,115,112,101,101,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,107,46,101,120,116,101,110,100,40,123,125,44,101,41,58,123,99,111,109,112,108,101,116,101,58,110,124,124,33,110,38,38,116,124,124,109,40,101,41,38,38,101,44,100,117,114,97,116,105,111,110,58,101,44,101,97,115,105,110,103,58,110,38,38,116,124,124,116,38,38,33,109,40,116,41,38,38,116,125,59,114,101,116,117,114,110,32,107,46,102,120,46,111,102,102,63,114,46,100,117,114,97,116,105,111,110,61,48,58,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,100,117,114,97,116,105,111,110,38,38,40,114,46,100,117,114,97,116,105,111,110,32,105,110,32,107,46,102,120,46,115,112,101,101,100,115,63,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,91,114,46,100,117,114,97,116,105,111,110,93,58,114,46,100,117,114,97,116,105,111,110,61,107,46,102,120,46,115,112,101,101,100,115,46,95,100,101,102,97,117,108,116,41,44,110,117,108,108,33,61,114,46,113,117,101,117,101,38,38,33,48,33,61,61,114,46,113,117,101,117,101,124,124,40,114,46,113,117,101,117,101,61,34,102,120,34,41,44,114,46,111,108,100,61,114,46,99,111,109,112,108,101,116,101,44,114,46,99,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,109,40,114,46,111,108,100,41,38,38,114,46,111,108,100,46,99,97,108,108,40,116,104,105,115,41,44,114,46,113,117,101,117,101,38,38,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,114,46,113,117,101,117,101,41,125,44,114,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,102,97,100,101,84,111,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,115,101,41,46,99,115,115,40,34,111,112,97,99,105,116,121,34,44,48,41,46,115,104,111,119,40,41,46,101,110,100,40,41,46,97,110,105,109,97,116,101,40,123,111,112,97,99,105,116,121,58,116,125,44,101,44,110,44,114,41,125,44,97,110,105,109,97,116,101,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,114,41,123,118,97,114,32,105,61,107,46,105,115,69,109,112,116,121,79,98,106,101,99,116,40,116,41,44,111,61,107,46,115,112,101,101,100,40,101,44,110,44,114,41,44,97,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,100,116,40,116,104,105,115,44,107,46,101,120,116,101,110,100,40,123,125,44,116,41,44,111,41,59,40,105,124,124,81,46,103,101,116,40,116,104,105,115,44,34,102,105,110,105,115,104,34,41,41,38,38,101,46,115,116,111,112,40,33,48,41,125,59,114,101,116,117,114,110,32,97,46,102,105,110,105,115,104,61,97,44,105,124,124,33,49,61,61,61,111,46,113,117,101,117,101,63,116,104,105,115,46,101,97,99,104,40,97,41,58,116,104,105,115,46,113,117,101,117,101,40,111,46,113,117,101,117,101,44,97,41,125,44,115,116,111,112,58,102,117,110,99,116,105,111,110,40,105,44,101,44,111,41,123,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,115,116,111,112,59,100,101,108,101,116,101,32,101,46,115,116,111,112,44,116,40,111,41,125,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,105,38,38,40,111,61,101,44,101,61,105,44,105,61,118,111,105,100,32,48,41,44,101,38,38,33,49,33,61,61,105,38,38,116,104,105,115,46,113,117,101,117,101,40,105,124,124,34,102,120,34,44,91,93,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,48,44,116,61,110,117,108,108,33,61,105,38,38,105,43,34,113,117,101,117,101,72,111,111,107,115,34,44,110,61,107,46,116,105,109,101,114,115,44,114,61,81,46,103,101,116,40,116,104,105,115,41,59,105,102,40,116,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,97,40,114,91,116,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,114,41,114,91,116,93,38,38,114,91,116,93,46,115,116,111,112,38,38,117,116,46,116,101,115,116,40,116,41,38,38,97,40,114,91,116,93,41,59,102,111,114,40,116,61,110,46,108,101,110,103,116,104,59,116,45,45,59,41,110,91,116,93,46,101,108,101,109,33,61,61,116,104,105,115,124,124,110,117,108,108,33,61,105,38,38,110,91,116,93,46,113,117,101,117,101,33,61,61,105,124,124,40,110,91,116,93,46,97,110,105,109,46,115,116,111,112,40,111,41,44,101,61,33,49,44,110,46,115,112,108,105,99,101,40,116,44,49,41,41,59,33,101,38,38,111,124,124,107,46,100,101,113,117,101,117,101,40,116,104,105,115,44,105,41,125,41,125,44,102,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,33,49,33,61,61,97,38,38,40,97,61,97,124,124,34,102,120,34,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,81,46,103,101,116,40,116,104,105,115,41,44,110,61,116,91,97,43,34,113,117,101,117,101,34,93,44,114,61,116,91,97,43,34,113,117,101,117,101,72,111,111,107,115,34,93,44,105,61,107,46,116,105,109,101,114,115,44,111,61,110,63,110,46,108,101,110,103,116,104,58,48,59,102,111,114,40,116,46,102,105,110,105,115,104,61,33,48,44,107,46,113,117,101,117,101,40,116,104,105,115,44,97,44,91,93,41,44,114,38,38,114,46,115,116,111,112,38,38,114,46,115,116,111,112,46,99,97,108,108,40,116,104,105,115,44,33,48,41,44,101,61,105,46,108,101,110,103,116,104,59,101,45,45,59,41,105,91,101,93,46,101,108,101,109,61,61,61,116,104,105,115,38,38,105,91,101,93,46,113,117,101,117,101,61,61,61,97,38,38,40,105,91,101,93,46,97,110,105,109,46,115,116,111,112,40,33,48,41,44,105,46,115,112,108,105,99,101,40,101,44,49,41,41,59,102,111,114,40,101,61,48,59,101,60,111,59,101,43,43,41,110,91,101,93,38,38,110,91,101,93,46,102,105,110,105,115,104,38,38,110,91,101,93,46,102,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,41,59,100,101,108,101,116,101,32,116,46,102,105,110,105,115,104,125,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,103,103,108,101,34,44,34,115,104,111,119,34,44,34,104,105,100,101,34,93,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,118,97,114,32,105,61,107,46,102,110,91,114,93,59,107,46,102,110,91,114,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,105,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,58,116,104,105,115,46,97,110,105,109,97,116,101,40,102,116,40,114,44,33,48,41,44,101,44,116,44,110,41,125,125,41,44,107,46,101,97,99,104,40,123,115,108,105,100,101,68,111,119,110,58,102,116,40,34,115,104,111,119,34,41,44,115,108,105,100,101,85,112,58,102,116,40,34,104,105,100,101,34,41,44,115,108,105,100,101,84,111,103,103,108,101,58,102,116,40,34,116,111,103,103,108,101,34,41,44,102,97,100,101,73,110,58,123,111,112,97,99,105,116,121,58,34,115,104,111,119,34,125,44,102,97,100,101,79,117,116,58,123,111,112,97,99,105,116,121,58,34,104,105,100,101,34,125,44,102,97,100,101,84,111,103,103,108,101,58,123,111,112,97,99,105,116,121,58,34,116,111,103,103,108,101,34,125,125,44,102,117,110,99,116,105,111,110,40,101,44,114,41,123,107,46,102,110,91,101,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,97,110,105,109,97,116,101,40,114,44,101,44,116,44,110,41,125,125,41,44,107,46,116,105,109,101,114,115,61,91,93,44,107,46,102,120,46,116,105,99,107,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,61,48,44,110,61,107,46,116,105,109,101,114,115,59,102,111,114,40,114,116,61,68,97,116,101,46,110,111,119,40,41,59,116,60,110,46,108,101,110,103,116,104,59,116,43,43,41,40,101,61,110,91,116,93,41,40,41,124,124,110,91,116,93,33,61,61,101,124,124,110,46,115,112,108,105,99,101,40,116,45,45,44,49,41,59,110,46,108,101,110,103,116,104,124,124,107,46,102,120,46,115,116,111,112,40,41,44,114,116,61,118,111,105,100,32,48,125,44,107,46,102,120,46,116,105,109,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,116,105,109,101,114,115,46,112,117,115,104,40,101,41,44,107,46,102,120,46,115,116,97,114,116,40,41,125,44,107,46,102,120,46,105,110,116,101,114,118,97,108,61,49,51,44,107,46,102,120,46,115,116,97,114,116,61,102,117,110,99,116,105,111,110,40,41,123,105,116,124,124,40,105,116,61,33,48,44,108,116,40,41,41,125,44,107,46,102,120,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,105,116,61,110,117,108,108,125,44,107,46,102,120,46,115,112,101,101,100,115,61,123,115,108,111,119,58,54,48,48,44,102,97,115,116,58,50,48,48,44,95,100,101,102,97,117,108,116,58,52,48,48,125,44,107,46,102,110,46,100,101,108,97,121,61,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,114,61,107,46,102,120,38,38,107,46,102,120,46,115,112,101,101,100,115,91,114,93,124,124,114,44,101,61,101,124,124,34,102,120,34,44,116,104,105,115,46,113,117,101,117,101,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,67,46,115,101,116,84,105,109,101,111,117,116,40,101,44,114,41,59,116,46,115,116,111,112,61,102,117,110,99,116,105,111,110,40,41,123,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,125,41,125,44,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,44,97,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,101,108,101,99,116,34,41,46,97,112,112,101,110,100,67,104,105,108,100,40,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,111,112,116,105,111,110,34,41,41,44,111,116,46,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,44,121,46,99,104,101,99,107,79,110,61,34,34,33,61,61,111,116,46,118,97,108,117,101,44,121,46,111,112,116,83,101,108,101,99,116,101,100,61,97,116,46,115,101,108,101,99,116,101,100,44,40,111,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,110,112,117,116,34,41,41,46,118,97,108,117,101,61,34,116,34,44,111,116,46,116,121,112,101,61,34,114,97,100,105,111,34,44,121,46,114,97,100,105,111,86,97,108,117,101,61,34,116,34,61,61,61,111,116,46,118,97,108,117,101,59,118,97,114,32,104,116,44,103,116,61,107,46,101,120,112,114,46,97,116,116,114,72,97,110,100,108,101,59,107,46,102,110,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,97,116,116,114,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,114,101,109,111,118,101,65,116,116,114,40,116,104,105,115,44,101,41,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,97,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,63,107,46,112,114,111,112,40,101,44,116,44,110,41,58,40,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,105,61,107,46,97,116,116,114,72,111,111,107,115,91,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,116,101,115,116,40,116,41,63,104,116,58,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,110,63,110,117,108,108,61,61,61,110,63,118,111,105,100,32,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,116,41,58,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,40,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,43,34,34,41,44,110,41,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,110,117,108,108,61,61,40,114,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,116,41,41,63,118,111,105,100,32,48,58,114,41,125,44,97,116,116,114,72,111,111,107,115,58,123,116,121,112,101,58,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,121,46,114,97,100,105,111,86,97,108,117,101,38,38,34,114,97,100,105,111,34,61,61,61,116,38,38,65,40,101,44,34,105,110,112,117,116,34,41,41,123,118,97,114,32,110,61,101,46,118,97,108,117,101,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,116,41,44,110,38,38,40,101,46,118,97,108,117,101,61,110,41,44,116,125,125,125,125,44,114,101,109,111,118,101,65,116,116,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,48,44,105,61,116,38,38,116,46,109,97,116,99,104,40,82,41,59,105,102,40,105,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,110,41,125,125,41,44,104,116,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,33,49,61,61,61,116,63,107,46,114,101,109,111,118,101,65,116,116,114,40,101,44,110,41,58,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,110,44,110,41,44,110,125,125,44,107,46,101,97,99,104,40,107,46,101,120,112,114,46,109,97,116,99,104,46,98,111,111,108,46,115,111,117,114,99,101,46,109,97,116,99,104,40,47,92,119,43,47,103,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,97,61,103,116,91,116,93,124,124,107,46,102,105,110,100,46,97,116,116,114,59,103,116,91,116,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,114,101,116,117,114,110,32,110,124,124,40,105,61,103,116,91,111,93,44,103,116,91,111,93,61,114,44,114,61,110,117,108,108,33,61,97,40,101,44,116,44,110,41,63,111,58,110,117,108,108,44,103,116,91,111,93,61,105,41,44,114,125,125,41,59,118,97,114,32,118,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,98,117,116,116,111,110,41,36,47,105,44,121,116,61,47,94,40,63,58,97,124,97,114,101,97,41,36,47,105,59,102,117,110,99,116,105,111,110,32,109,116,40,101,41,123,114,101,116,117,114,110,40,101,46,109,97,116,99,104,40,82,41,124,124,91,93,41,46,106,111,105,110,40,34,32,34,41,125,102,117,110,99,116,105,111,110,32,120,116,40,101,41,123,114,101,116,117,114,110,32,101,46,103,101,116,65,116,116,114,105,98,117,116,101,38,38,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,124,124,34,34,125,102,117,110,99,116,105,111,110,32,98,116,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,109,97,116,99,104,40,82,41,124,124,91,93,125,107,46,102,110,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,107,46,112,114,111,112,44,101,44,116,44,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,44,114,101,109,111,118,101,80,114,111,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,100,101,108,101,116,101,32,116,104,105,115,91,107,46,112,114,111,112,70,105,120,91,101,93,124,124,101,93,125,41,125,125,41,44,107,46,101,120,116,101,110,100,40,123,112,114,111,112,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,61,101,46,110,111,100,101,84,121,112,101,59,105,102,40,51,33,61,61,111,38,38,56,33,61,61,111,38,38,50,33,61,61,111,41,114,101,116,117,114,110,32,49,61,61,61,111,38,38,107,46,105,115,88,77,76,68,111,99,40,101,41,124,124,40,116,61,107,46,112,114,111,112,70,105,120,91,116,93,124,124,116,44,105,61,107,46,112,114,111,112,72,111,111,107,115,91,116,93,41,44,118,111,105,100,32,48,33,61,61,110,63,105,38,38,34,115,101,116,34,105,110,32,105,38,38,118,111,105,100,32,48,33,61,61,40,114,61,105,46,115,101,116,40,101,44,110,44,116,41,41,63,114,58,101,91,116,93,61,110,58,105,38,38,34,103,101,116,34,105,110,32,105,38,38,110,117,108,108,33,61,61,40,114,61,105,46,103,101,116,40,101,44,116,41,41,63,114,58,101,91,116,93,125,44,112,114,111,112,72,111,111,107,115,58,123,116,97,98,73,110,100,101,120,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,116,97,98,105,110,100,101,120,34,41,59,114,101,116,117,114,110,32,116,63,112,97,114,115,101,73,110,116,40,116,44,49,48,41,58,118,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,124,124,121,116,46,116,101,115,116,40,101,46,110,111,100,101,78,97,109,101,41,38,38,101,46,104,114,101,102,63,48,58,45,49,125,125,125,44,112,114,111,112,70,105,120,58,123,34,102,111,114,34,58,34,104,116,109,108,70,111,114,34,44,34,99,108,97,115,115,34,58,34,99,108,97,115,115,78,97,109,101,34,125,125,41,44,121,46,111,112,116,83,101,108,101,99,116,101,100,124,124,40,107,46,112,114,111,112,72,111,111,107,115,46,115,101,108,101,99,116,101,100,61,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,114,101,116,117,114,110,32,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,110,117,108,108,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,59,116,38,38,40,116,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,112,97,114,101,110,116,78,111,100,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,97,98,73,110,100,101,120,34,44,34,114,101,97,100,79,110,108,121,34,44,34,109,97,120,76,101,110,103,116,104,34,44,34,99,101,108,108,83,112,97,99,105,110,103,34,44,34,99,101,108,108,80,97,100,100,105,110,103,34,44,34,114,111,119,83,112,97,110,34,44,34,99,111,108,83,112,97,110,34,44,34,117,115,101,77,97,112,34,44,34,102,114,97,109,101,66,111,114,100,101,114,34,44,34,99,111,110,116,101,110,116,69,100,105,116,97,98,108,101,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,112,114,111,112,70,105,120,91,116,104,105,115,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,116,104,105,115,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,97,100,100,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,97,100,100,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,60,48,38,38,40,114,43,61,111,43,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,114,101,109,111,118,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,114,44,105,44,111,44,97,44,115,44,117,61,48,59,105,102,40,109,40,116,41,41,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,116,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,41,41,125,41,59,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,104,105,115,46,97,116,116,114,40,34,99,108,97,115,115,34,44,34,34,41,59,105,102,40,40,101,61,98,116,40,116,41,41,46,108,101,110,103,116,104,41,119,104,105,108,101,40,110,61,116,104,105,115,91,117,43,43,93,41,105,102,40,105,61,120,116,40,110,41,44,114,61,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,34,32,34,43,109,116,40,105,41,43,34,32,34,41,123,97,61,48,59,119,104,105,108,101,40,111,61,101,91,97,43,43,93,41,119,104,105,108,101,40,45,49,60,114,46,105,110,100,101,120,79,102,40,34,32,34,43,111,43,34,32,34,41,41,114,61,114,46,114,101,112,108,97,99,101,40,34,32,34,43,111,43,34,32,34,44,34,32,34,41,59,105,33,61,61,40,115,61,109,116,40,114,41,41,38,38,110,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,125,114,101,116,117,114,110,32,116,104,105,115,125,44,116,111,103,103,108,101,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,105,44,116,41,123,118,97,114,32,111,61,116,121,112,101,111,102,32,105,44,97,61,34,115,116,114,105,110,103,34,61,61,61,111,124,124,65,114,114,97,121,46,105,115,65,114,114,97,121,40,105,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,97,63,116,63,116,104,105,115,46,97,100,100,67,108,97,115,115,40,105,41,58,116,104,105,115,46,114,101,109,111,118,101,67,108,97,115,115,40,105,41,58,109,40,105,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,116,111,103,103,108,101,67,108,97,115,115,40,105,46,99,97,108,108,40,116,104,105,115,44,101,44,120,116,40,116,104,105,115,41,44,116,41,44,116,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,44,116,44,110,44,114,59,105,102,40,97,41,123,116,61,48,44,110,61,107,40,116,104,105,115,41,44,114,61,98,116,40,105,41,59,119,104,105,108,101,40,101,61,114,91,116,43,43,93,41,110,46,104,97,115,67,108,97,115,115,40,101,41,63,110,46,114,101,109,111,118,101,67,108,97,115,115,40,101,41,58,110,46,97,100,100,67,108,97,115,115,40,101,41,125,101,108,115,101,32,118,111,105,100,32,48,33,61,61,105,38,38,34,98,111,111,108,101,97,110,34,33,61,61,111,124,124,40,40,101,61,120,116,40,116,104,105,115,41,41,38,38,81,46,115,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,44,101,41,44,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,38,38,116,104,105,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,101,124,124,33,49,61,61,61,105,63,34,34,58,81,46,103,101,116,40,116,104,105,115,44,34,95,95,99,108,97,115,115,78,97,109,101,95,95,34,41,124,124,34,34,41,41,125,41,125,44,104,97,115,67,108,97,115,115,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,61,48,59,116,61,34,32,34,43,101,43,34,32,34,59,119,104,105,108,101,40,110,61,116,104,105,115,91,114,43,43,93,41,105,102,40,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,45,49,60,40,34,32,34,43,109,116,40,120,116,40,110,41,41,43,34,32,34,41,46,105,110,100,101,120,79,102,40,116,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,125,41,59,118,97,114,32,119,116,61,47,92,114,47,103,59,107,46,102,110,46,101,120,116,101,110,100,40,123,118,97,108,58,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,101,44,105,44,116,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,40,105,61,109,40,110,41,44,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,49,61,61,61,116,104,105,115,46,110,111,100,101,84,121,112,101,38,38,40,110,117,108,108,61,61,40,116,61,105,63,110,46,99,97,108,108,40,116,104,105,115,44,101,44,107,40,116,104,105,115,41,46,118,97,108,40,41,41,58,110,41,63,116,61,34,34,58,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,63,116,43,61,34,34,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,38,38,40,116,61,107,46,109,97,112,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,101,63,34,34,58,101,43,34,34,125,41,41,44,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,115,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,114,46,115,101,116,40,116,104,105,115,44,116,44,34,118,97,108,117,101,34,41,124,124,40,116,104,105,115,46,118,97,108,117,101,61,116,41,41,125,41,41,58,116,63,40,114,61,107,46,118,97,108,72,111,111,107,115,91,116,46,116,121,112,101,93,124,124,107,46,118,97,108,72,111,111,107,115,91,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,41,38,38,34,103,101,116,34,105,110,32,114,38,38,118,111,105,100,32,48,33,61,61,40,101,61,114,46,103,101,116,40,116,44,34,118,97,108,117,101,34,41,41,63,101,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,40,101,61,116,46,118,97,108,117,101,41,63,101,46,114,101,112,108,97,99,101,40,119,116,44,34,34,41,58,110,117,108,108,61,61,101,63,34,34,58,101,58,118,111,105,100,32,48,125,125,41,44,107,46,101,120,116,101,110,100,40,123,118,97,108,72,111,111,107,115,58,123,111,112,116,105,111,110,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,102,105,110,100,46,97,116,116,114,40,101,44,34,118,97,108,117,101,34,41,59,114,101,116,117,114,110,32,110,117,108,108,33,61,116,63,116,58,109,116,40,107,46,116,101,120,116,40,101,41,41,125,125,44,115,101,108,101,99,116,58,123,103,101,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,44,97,61,34,115,101,108,101,99,116,45,111,110,101,34,61,61,61,101,46,116,121,112,101,44,115,61,97,63,110,117,108,108,58,91,93,44,117,61,97,63,111,43,49,58,105,46,108,101,110,103,116,104,59,102,111,114,40,114,61,111,60,48,63,117,58,97,63,111,58,48,59,114,60,117,59,114,43,43,41,105,102,40,40,40,110,61,105,91,114,93,41,46,115,101,108,101,99,116,101,100,124,124,114,61,61,61,111,41,38,38,33,110,46,100,105,115,97,98,108,101,100,38,38,40,33,110,46,112,97,114,101,110,116,78,111,100,101,46,100,105,115,97,98,108,101,100,124,124,33,65,40,110,46,112,97,114,101,110,116,78,111,100,101,44,34,111,112,116,103,114,111,117,112,34,41,41,41,123,105,102,40,116,61,107,40,110,41,46,118,97,108,40,41,44,97,41,114,101,116,117,114,110,32,116,59,115,46,112,117,115,104,40,116,41,125,114,101,116,117,114,110,32,115,125,44,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,101,46,111,112,116,105,111,110,115,44,111,61,107,46,109,97,107,101,65,114,114,97,121,40,116,41,44,97,61,105,46,108,101,110,103,116,104,59,119,104,105,108,101,40,97,45,45,41,40,40,114,61,105,91,97,93,41,46,115,101,108,101,99,116,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,46,118,97,108,72,111,111,107,115,46,111,112,116,105,111,110,46,103,101,116,40,114,41,44,111,41,41,38,38,40,110,61,33,48,41,59,114,101,116,117,114,110,32,110,124,124,40,101,46,115,101,108,101,99,116,101,100,73,110,100,101,120,61,45,49,41,44,111,125,125,125,125,41,44,107,46,101,97,99,104,40,91,34,114,97,100,105,111,34,44,34,99,104,101,99,107,98,111,120,34,93,44,102,117,110,99,116,105,111,110,40,41,123,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,61,123,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,116,41,41,114,101,116,117,114,110,32,101,46,99,104,101,99,107,101,100,61,45,49,60,107,46,105,110,65,114,114,97,121,40,107,40,101,41,46,118,97,108,40,41,44,116,41,125,125,44,121,46,99,104,101,99,107,79,110,124,124,40,107,46,118,97,108,72,111,111,107,115,91,116,104,105,115,93,46,103,101,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,118,97,108,117,101,34,41,63,34,111,110,34,58,101,46,118,97,108,117,101,125,41,125,41,44,121,46,102,111,99,117,115,105,110,61,34,111,110,102,111,99,117,115,105,110,34,105,110,32,67,59,118,97,114,32,84,116,61,47,94,40,63,58,102,111,99,117,115,105,110,102,111,99,117,115,124,102,111,99,117,115,111,117,116,98,108,117,114,41,36,47,44,67,116,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,59,107,46,101,120,116,101,110,100,40,107,46,101,118,101,110,116,44,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,44,99,44,102,44,112,61,91,110,124,124,69,93,44,100,61,118,46,99,97,108,108,40,101,44,34,116,121,112,101,34,41,63,101,46,116,121,112,101,58,101,44,104,61,118,46,99,97,108,108,40,101,44,34,110,97,109,101,115,112,97,99,101,34,41,63,101,46,110,97,109,101,115,112,97,99,101,46,115,112,108,105,116,40,34,46,34,41,58,91,93,59,105,102,40,111,61,102,61,97,61,110,61,110,124,124,69,44,51,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,56,33,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,84,116,46,116,101,115,116,40,100,43,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,41,38,38,40,45,49,60,100,46,105,110,100,101,120,79,102,40,34,46,34,41,38,38,40,100,61,40,104,61,100,46,115,112,108,105,116,40,34,46,34,41,41,46,115,104,105,102,116,40,41,44,104,46,115,111,114,116,40,41,41,44,117,61,100,46,105,110,100,101,120,79,102,40,34,58,34,41,60,48,38,38,34,111,110,34,43,100,44,40,101,61,101,91,107,46,101,120,112,97,110,100,111,93,63,101,58,110,101,119,32,107,46,69,118,101,110,116,40,100,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,41,46,105,115,84,114,105,103,103,101,114,61,114,63,50,58,51,44,101,46,110,97,109,101,115,112,97,99,101,61,104,46,106,111,105,110,40,34,46,34,41,44,101,46,114,110,97,109,101,115,112,97,99,101,61,101,46,110,97,109,101,115,112,97,99,101,63,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,46,41,34,43,104,46,106,111,105,110,40,34,92,92,46,40,63,58,46,42,92,92,46,124,41,34,41,43,34,40,92,92,46,124,36,41,34,41,58,110,117,108,108,44,101,46,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,116,97,114,103,101,116,124,124,40,101,46,116,97,114,103,101,116,61,110,41,44,116,61,110,117,108,108,61,61,116,63,91,101,93,58,107,46,109,97,107,101,65,114,114,97,121,40,116,44,91,101,93,41,44,99,61,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,100,93,124,124,123,125,44,114,124,124,33,99,46,116,114,105,103,103,101,114,124,124,33,49,33,61,61,99,46,116,114,105,103,103,101,114,46,97,112,112,108,121,40,110,44,116,41,41,41,123,105,102,40,33,114,38,38,33,99,46,110,111,66,117,98,98,108,101,38,38,33,120,40,110,41,41,123,102,111,114,40,115,61,99,46,100,101,108,101,103,97,116,101,84,121,112,101,124,124,100,44,84,116,46,116,101,115,116,40,115,43,100,41,124,124,40,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,59,111,59,111,61,111,46,112,97,114,101,110,116,78,111,100,101,41,112,46,112,117,115,104,40,111,41,44,97,61,111,59,97,61,61,61,40,110,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,69,41,38,38,112,46,112,117,115,104,40,97,46,100,101,102,97,117,108,116,86,105,101,119,124,124,97,46,112,97,114,101,110,116,87,105,110,100,111,119,124,124,67,41,125,105,61,48,59,119,104,105,108,101,40,40,111,61,112,91,105,43,43,93,41,38,38,33,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,41,102,61,111,44,101,46,116,121,112,101,61,49,60,105,63,115,58,99,46,98,105,110,100,84,121,112,101,124,124,100,44,40,108,61,40,81,46,103,101,116,40,111,44,34,101,118,101,110,116,115,34,41,124,124,123,125,41,91,101,46,116,121,112,101,93,38,38,81,46,103,101,116,40,111,44,34,104,97,110,100,108,101,34,41,41,38,38,108,46,97,112,112,108,121,40,111,44,116,41,44,40,108,61,117,38,38,111,91,117,93,41,38,38,108,46,97,112,112,108,121,38,38,71,40,111,41,38,38,40,101,46,114,101,115,117,108,116,61,108,46,97,112,112,108,121,40,111,44,116,41,44,33,49,61,61,61,101,46,114,101,115,117,108,116,38,38,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,41,59,114,101,116,117,114,110,32,101,46,116,121,112,101,61,100,44,114,124,124,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,99,46,95,100,101,102,97,117,108,116,38,38,33,49,33,61,61,99,46,95,100,101,102,97,117,108,116,46,97,112,112,108,121,40,112,46,112,111,112,40,41,44,116,41,124,124,33,71,40,110,41,124,124,117,38,38,109,40,110,91,100,93,41,38,38,33,120,40,110,41,38,38,40,40,97,61,110,91,117,93,41,38,38,40,110,91,117,93,61,110,117,108,108,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,100,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,110,91,100,93,40,41,44,101,46,105,115,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,40,41,38,38,102,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,100,44,67,116,41,44,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,101,100,61,118,111,105,100,32,48,44,97,38,38,40,110,91,117,93,61,97,41,41,44,101,46,114,101,115,117,108,116,125,125,44,115,105,109,117,108,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,61,107,46,101,120,116,101,110,100,40,110,101,119,32,107,46,69,118,101,110,116,44,110,44,123,116,121,112,101,58,101,44,105,115,83,105,109,117,108,97,116,101,100,58,33,48,125,41,59,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,114,44,110,117,108,108,44,116,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,116,114,105,103,103,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,116,104,105,115,41,125,41,125,44,116,114,105,103,103,101,114,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,91,48,93,59,105,102,40,110,41,114,101,116,117,114,110,32,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,101,44,116,44,110,44,33,48,41,125,125,41,44,121,46,102,111,99,117,115,105,110,124,124,107,46,101,97,99,104,40,123,102,111,99,117,115,58,34,102,111,99,117,115,105,110,34,44,98,108,117,114,58,34,102,111,99,117,115,111,117,116,34,125,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,118,97,114,32,105,61,102,117,110,99,116,105,111,110,40,101,41,123,107,46,101,118,101,110,116,46,115,105,109,117,108,97,116,101,40,114,44,101,46,116,97,114,103,101,116,44,107,46,101,118,101,110,116,46,102,105,120,40,101,41,41,125,59,107,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,114,93,61,123,115,101,116,117,112,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,59,116,124,124,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,97,99,99,101,115,115,40,101,44,114,44,40,116,124,124,48,41,43,49,41,125,44,116,101,97,114,100,111,119,110,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,119,110,101,114,68,111,99,117,109,101,110,116,124,124,116,104,105,115,44,116,61,81,46,97,99,99,101,115,115,40,101,44,114,41,45,49,59,116,63,81,46,97,99,99,101,115,115,40,101,44,114,44,116,41,58,40,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,33,48,41,44,81,46,114,101,109,111,118,101,40,101,44,114,41,41,125,125,125,41,59,118,97,114,32,69,116,61,67,46,108,111,99,97,116,105,111,110,44,107,116,61,68,97,116,101,46,110,111,119,40,41,44,83,116,61,47,92,63,47,59,107,46,112,97,114,115,101,88,77,76,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,33,101,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,110,117,108,108,59,116,114,121,123,116,61,40,110,101,119,32,67,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,101,44,34,116,101,120,116,47,120,109,108,34,41,125,99,97,116,99,104,40,101,41,123,116,61,118,111,105,100,32,48,125,114,101,116,117,114,110,32,116,38,38,33,116,46,103,101,116,69,108,101,109,101,110,116,115,66,121,84,97,103,78,97,109,101,40,34,112,97,114,115,101,114,101,114,114,111,114,34,41,46,108,101,110,103,116,104,124,124,107,46,101,114,114,111,114,40,34,73,110,118,97,108,105,100,32,88,77,76,58,32,34,43,101,41,44,116,125,59,118,97,114,32,78,116,61,47,92,91,92,93,36,47,44,65,116,61,47,92,114,63,92,110,47,103,44,68,116,61,47,94,40,63,58,115,117,98,109,105,116,124,98,117,116,116,111,110,124,105,109,97,103,101,124,114,101,115,101,116,124,102,105,108,101,41,36,47,105,44,106,116,61,47,94,40,63,58,105,110,112,117,116,124,115,101,108,101,99,116,124,116,101,120,116,97,114,101,97,124,107,101,121,103,101,110,41,47,105,59,102,117,110,99,116,105,111,110,32,113,116,40,110,44,101,44,114,44,105,41,123,118,97,114,32,116,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,124,124,78,116,46,116,101,115,116,40,110,41,63,105,40,110,44,116,41,58,113,116,40,110,43,34,91,34,43,40,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,116,63,101,58,34,34,41,43,34,93,34,44,116,44,114,44,105,41,125,41,59,101,108,115,101,32,105,102,40,114,124,124,34,111,98,106,101,99,116,34,33,61,61,119,40,101,41,41,105,40,110,44,101,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,113,116,40,110,43,34,91,34,43,116,43,34,93,34,44,101,91,116,93,44,114,44,105,41,125,107,46,112,97,114,97,109,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,91,93,44,105,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,109,40,116,41,63,116,40,41,58,116,59,114,91,114,46,108,101,110,103,116,104,93,61,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,101,41,43,34,61,34,43,101,110,99,111,100,101,85,82,73,67,111,109,112,111,110,101,110,116,40,110,117,108,108,61,61,110,63,34,34,58,110,41,125,59,105,102,40,110,117,108,108,61,61,101,41,114,101,116,117,114,110,34,34,59,105,102,40,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,124,124,101,46,106,113,117,101,114,121,38,38,33,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,41,107,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,41,123,105,40,116,104,105,115,46,110,97,109,101,44,116,104,105,115,46,118,97,108,117,101,41,125,41,59,101,108,115,101,32,102,111,114,40,110,32,105,110,32,101,41,113,116,40,110,44,101,91,110,93,44,116,44,105,41,59,114,101,116,117,114,110,32,114,46,106,111,105,110,40,34,38,34,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,115,101,114,105,97,108,105,122,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,46,112,97,114,97,109,40,116,104,105,115,46,115,101,114,105,97,108,105,122,101,65,114,114,97,121,40,41,41,125,44,115,101,114,105,97,108,105,122,101,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,46,112,114,111,112,40,116,104,105,115,44,34,101,108,101,109,101,110,116,115,34,41,59,114,101,116,117,114,110,32,101,63,107,46,109,97,107,101,65,114,114,97,121,40,101,41,58,116,104,105,115,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,116,121,112,101,59,114,101,116,117,114,110,32,116,104,105,115,46,110,97,109,101,38,38,33,107,40,116,104,105,115,41,46,105,115,40,34,58,100,105,115,97,98,108,101,100,34,41,38,38,106,116,46,116,101,115,116,40,116,104,105,115,46,110,111,100,101,78,97,109,101,41,38,38,33,68,116,46,116,101,115,116,40,101,41,38,38,40,116,104,105,115,46,99,104,101,99,107,101,100,124,124,33,112,101,46,116,101,115,116,40,101,41,41,125,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,107,40,116,104,105,115,41,46,118,97,108,40,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,117,108,108,58,65,114,114,97,121,46,105,115,65,114,114,97,121,40,110,41,63,107,46,109,97,112,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,101,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,58,123,110,97,109,101,58,116,46,110,97,109,101,44,118,97,108,117,101,58,110,46,114,101,112,108,97,99,101,40,65,116,44,34,92,114,92,110,34,41,125,125,41,46,103,101,116,40,41,125,125,41,59,118,97,114,32,76,116,61,47,37,50,48,47,103,44,72,116,61,47,35,46,42,36,47,44,79,116,61,47,40,91,63,38,93,41,95,61,91,94,38,93,42,47,44,80,116,61,47,94,40,46,42,63,41,58,91,32,92,116,93,42,40,91,94,92,114,92,110,93,42,41,36,47,103,109,44,82,116,61,47,94,40,63,58,71,69,84,124,72,69,65,68,41,36,47,44,77,116,61,47,94,92,47,92,47,47,44,73,116,61,123,125,44,87,116,61,123,125,44,36,116,61,34,42,47,34,46,99,111,110,99,97,116,40,34,42,34,41,44,70,116,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,102,117,110,99,116,105,111,110,32,66,116,40,111,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,34,42,34,41,59,118,97,114,32,110,44,114,61,48,44,105,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,93,59,105,102,40,109,40,116,41,41,119,104,105,108,101,40,110,61,105,91,114,43,43,93,41,34,43,34,61,61,61,110,91,48,93,63,40,110,61,110,46,115,108,105,99,101,40,49,41,124,124,34,42,34,44,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,117,110,115,104,105,102,116,40,116,41,41,58,40,111,91,110,93,61,111,91,110,93,124,124,91,93,41,46,112,117,115,104,40,116,41,125,125,102,117,110,99,116,105,111,110,32,95,116,40,116,44,105,44,111,44,97,41,123,118,97,114,32,115,61,123,125,44,117,61,116,61,61,61,87,116,59,102,117,110,99,116,105,111,110,32,108,40,101,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,115,91,101,93,61,33,48,44,107,46,101,97,99,104,40,116,91,101,93,124,124,91,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,40,105,44,111,44,97,41,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,124,124,117,124,124,115,91,110,93,63,117,63,33,40,114,61,110,41,58,118,111,105,100,32,48,58,40,105,46,100,97,116,97,84,121,112,101,115,46,117,110,115,104,105,102,116,40,110,41,44,108,40,110,41,44,33,49,41,125,41,44,114,125,114,101,116,117,114,110,32,108,40,105,46,100,97,116,97,84,121,112,101,115,91,48,93,41,124,124,33,115,91,34,42,34,93,38,38,108,40,34,42,34,41,125,102,117,110,99,116,105,111,110,32,122,116,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,102,108,97,116,79,112,116,105,111,110,115,124,124,123,125,59,102,111,114,40,110,32,105,110,32,116,41,118,111,105,100,32,48,33,61,61,116,91,110,93,38,38,40,40,105,91,110,93,63,101,58,114,124,124,40,114,61,123,125,41,41,91,110,93,61,116,91,110,93,41,59,114,101,116,117,114,110,32,114,38,38,107,46,101,120,116,101,110,100,40,33,48,44,101,44,114,41,44,101,125,70,116,46,104,114,101,102,61,69,116,46,104,114,101,102,44,107,46,101,120,116,101,110,100,40,123,97,99,116,105,118,101,58,48,44,108,97,115,116,77,111,100,105,102,105,101,100,58,123,125,44,101,116,97,103,58,123,125,44,97,106,97,120,83,101,116,116,105,110,103,115,58,123,117,114,108,58,69,116,46,104,114,101,102,44,116,121,112,101,58,34,71,69,84,34,44,105,115,76,111,99,97,108,58,47,94,40,63,58,97,98,111,117,116,124,97,112,112,124,97,112,112,45,115,116,111,114,97,103,101,124,46,43,45,101,120,116,101,110,115,105,111,110,124,102,105,108,101,124,114,101,115,124,119,105,100,103,101,116,41,58,36,47,46,116,101,115,116,40,69,116,46,112,114,111,116,111,99,111,108,41,44,103,108,111,98,97,108,58,33,48,44,112,114,111,99,101,115,115,68,97,116,97,58,33,48,44,97,115,121,110,99,58,33,48,44,99,111,110,116,101,110,116,84,121,112,101,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,59,32,99,104,97,114,115,101,116,61,85,84,70,45,56,34,44,97,99,99,101,112,116,115,58,123,34,42,34,58,36,116,44,116,101,120,116,58,34,116,101,120,116,47,112,108,97,105,110,34,44,104,116,109,108,58,34,116,101,120,116,47,104,116,109,108,34,44,120,109,108,58,34,97,112,112,108,105,99,97,116,105,111,110,47,120,109,108,44,32,116,101,120,116,47,120,109,108,34,44,106,115,111,110,58,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,44,32,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,120,109,108,58,47,92,98,120,109,108,92,98,47,44,104,116,109,108,58,47,92,98,104,116,109,108,47,44,106,115,111,110,58,47,92,98,106,115,111,110,92,98,47,125,44,114,101,115,112,111,110,115,101,70,105,101,108,100,115,58,123,120,109,108,58,34,114,101,115,112,111,110,115,101,88,77,76,34,44,116,101,120,116,58,34,114,101,115,112,111,110,115,101,84,101,120,116,34,44,106,115,111,110,58,34,114,101,115,112,111,110,115,101,74,83,79,78,34,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,42,32,116,101,120,116,34,58,83,116,114,105,110,103,44,34,116,101,120,116,32,104,116,109,108,34,58,33,48,44,34,116,101,120,116,32,106,115,111,110,34,58,74,83,79,78,46,112,97,114,115,101,44,34,116,101,120,116,32,120,109,108,34,58,107,46,112,97,114,115,101,88,77,76,125,44,102,108,97,116,79,112,116,105,111,110,115,58,123,117,114,108,58,33,48,44,99,111,110,116,101,120,116,58,33,48,125,125,44,97,106,97,120,83,101,116,117,112,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,63,122,116,40,122,116,40,101,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,41,44,116,41,58,122,116,40,107,46,97,106,97,120,83,101,116,116,105,110,103,115,44,101,41,125,44,97,106,97,120,80,114,101,102,105,108,116,101,114,58,66,116,40,73,116,41,44,97,106,97,120,84,114,97,110,115,112,111,114,116,58,66,116,40,87,116,41,44,97,106,97,120,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,101,44,101,61,118,111,105,100,32,48,41,44,116,61,116,124,124,123,125,59,118,97,114,32,99,44,102,44,112,44,110,44,100,44,114,44,104,44,103,44,105,44,111,44,118,61,107,46,97,106,97,120,83,101,116,117,112,40,123,125,44,116,41,44,121,61,118,46,99,111,110,116,101,120,116,124,124,118,44,109,61,118,46,99,111,110,116,101,120,116,38,38,40,121,46,110,111,100,101,84,121,112,101,124,124,121,46,106,113,117,101,114,121,41,63,107,40,121,41,58,107,46,101,118,101,110,116,44,120,61,107,46,68,101,102,101,114,114,101,100,40,41,44,98,61,107,46,67,97,108,108,98,97,99,107,115,40,34,111,110,99,101,32,109,101,109,111,114,121,34,41,44,119,61,118,46,115,116,97,116,117,115,67,111,100,101,124,124,123,125,44,97,61,123,125,44,115,61,123,125,44,117,61,34,99,97,110,99,101,108,101,100,34,44,84,61,123,114,101,97,100,121,83,116,97,116,101,58,48,44,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,104,41,123,105,102,40,33,110,41,123,110,61,123,125,59,119,104,105,108,101,40,116,61,80,116,46,101,120,101,99,40,112,41,41,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,61,40,110,91,116,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,124,124,91,93,41,46,99,111,110,99,97,116,40,116,91,50,93,41,125,116,61,110,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,43,34,32,34,93,125,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,110,117,108,108,58,116,46,106,111,105,110,40,34,44,32,34,41,125,44,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,63,112,58,110,117,108,108,125,44,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,101,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,115,91,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,124,124,101,44,97,91,101,93,61,116,41,44,116,104,105,115,125,44,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,104,38,38,40,118,46,109,105,109,101,84,121,112,101,61,101,41,44,116,104,105,115,125,44,115,116,97,116,117,115,67,111,100,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,105,102,40,101,41,105,102,40,104,41,84,46,97,108,119,97,121,115,40,101,91,84,46,115,116,97,116,117,115,93,41,59,101,108,115,101,32,102,111,114,40,116,32,105,110,32,101,41,119,91,116,93,61,91,119,91,116,93,44,101,91,116,93,93,59,114,101,116,117,114,110,32,116,104,105,115,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,124,124,117,59,114,101,116,117,114,110,32,99,38,38,99,46,97,98,111,114,116,40,116,41,44,108,40,48,44,116,41,44,116,104,105,115,125,125,59,105,102,40,120,46,112,114,111,109,105,115,101,40,84,41,44,118,46,117,114,108,61,40,40,101,124,124,118,46,117,114,108,124,124,69,116,46,104,114,101,102,41,43,34,34,41,46,114,101,112,108,97,99,101,40,77,116,44,69,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,41,44,118,46,116,121,112,101,61,116,46,109,101,116,104,111,100,124,124,116,46,116,121,112,101,124,124,118,46,109,101,116,104,111,100,124,124,118,46,116,121,112,101,44,118,46,100,97,116,97,84,121,112,101,115,61,40,118,46,100,97,116,97,84,121,112,101,124,124,34,42,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,109,97,116,99,104,40,82,41,124,124,91,34,34,93,44,110,117,108,108,61,61,118,46,99,114,111,115,115,68,111,109,97,105,110,41,123,114,61,69,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,116,114,121,123,114,46,104,114,101,102,61,118,46,117,114,108,44,114,46,104,114,101,102,61,114,46,104,114,101,102,44,118,46,99,114,111,115,115,68,111,109,97,105,110,61,70,116,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,70,116,46,104,111,115,116,33,61,114,46,112,114,111,116,111,99,111,108,43,34,47,47,34,43,114,46,104,111,115,116,125,99,97,116,99,104,40,101,41,123,118,46,99,114,111,115,115,68,111,109,97,105,110,61,33,48,125,125,105,102,40,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,118,46,100,97,116,97,38,38,40,118,46,100,97,116,97,61,107,46,112,97,114,97,109,40,118,46,100,97,116,97,44,118,46,116,114,97,100,105,116,105,111,110,97,108,41,41,44,95,116,40,73,116,44,118,44,116,44,84,41,44,104,41,114,101,116,117,114,110,32,84,59,102,111,114,40,105,32,105,110,40,103,61,107,46,101,118,101,110,116,38,38,118,46,103,108,111,98,97,108,41,38,38,48,61,61,107,46,97,99,116,105,118,101,43,43,38,38,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,97,114,116,34,41,44,118,46,116,121,112,101,61,118,46,116,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,44,118,46,104,97,115,67,111,110,116,101,110,116,61,33,82,116,46,116,101,115,116,40,118,46,116,121,112,101,41,44,102,61,118,46,117,114,108,46,114,101,112,108,97,99,101,40,72,116,44,34,34,41,44,118,46,104,97,115,67,111,110,116,101,110,116,63,118,46,100,97,116,97,38,38,118,46,112,114,111,99,101,115,115,68,97,116,97,38,38,48,61,61,61,40,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,40,118,46,100,97,116,97,61,118,46,100,97,116,97,46,114,101,112,108,97,99,101,40,76,116,44,34,43,34,41,41,58,40,111,61,118,46,117,114,108,46,115,108,105,99,101,40,102,46,108,101,110,103,116,104,41,44,118,46,100,97,116,97,38,38,40,118,46,112,114,111,99,101,115,115,68,97,116,97,124,124,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,118,46,100,97,116,97,41,38,38,40,102,43,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,118,46,100,97,116,97,44,100,101,108,101,116,101,32,118,46,100,97,116,97,41,44,33,49,61,61,61,118,46,99,97,99,104,101,38,38,40,102,61,102,46,114,101,112,108,97,99,101,40,79,116,44,34,36,49,34,41,44,111,61,40,83,116,46,116,101,115,116,40,102,41,63,34,38,34,58,34,63,34,41,43,34,95,61,34,43,107,116,43,43,43,111,41,44,118,46,117,114,108,61,102,43,111,41,44,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,77,111,100,105,102,105,101,100,45,83,105,110,99,101,34,44,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,41,44,107,46,101,116,97,103,91,102,93,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,73,102,45,78,111,110,101,45,77,97,116,99,104,34,44,107,46,101,116,97,103,91,102,93,41,41,44,40,118,46,100,97,116,97,38,38,118,46,104,97,115,67,111,110,116,101,110,116,38,38,33,49,33,61,61,118,46,99,111,110,116,101,110,116,84,121,112,101,124,124,116,46,99,111,110,116,101,110,116,84,121,112,101,41,38,38,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,44,118,46,99,111,110,116,101,110,116,84,121,112,101,41,44,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,34,65,99,99,101,112,116,34,44,118,46,100,97,116,97,84,121,112,101,115,91,48,93,38,38,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,63,118,46,97,99,99,101,112,116,115,91,118,46,100,97,116,97,84,121,112,101,115,91,48,93,93,43,40,34,42,34,33,61,61,118,46,100,97,116,97,84,121,112,101,115,91,48,93,63,34,44,32,34,43,36,116,43,34,59,32,113,61,48,46,48,49,34,58,34,34,41,58,118,46,97,99,99,101,112,116,115,91,34,42,34,93,41,44,118,46,104,101,97,100,101,114,115,41,84,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,105,44,118,46,104,101,97,100,101,114,115,91,105,93,41,59,105,102,40,118,46,98,101,102,111,114,101,83,101,110,100,38,38,40,33,49,61,61,61,118,46,98,101,102,111,114,101,83,101,110,100,46,99,97,108,108,40,121,44,84,44,118,41,124,124,104,41,41,114,101,116,117,114,110,32,84,46,97,98,111,114,116,40,41,59,105,102,40,117,61,34,97,98,111,114,116,34,44,98,46,97,100,100,40,118,46,99,111,109,112,108,101,116,101,41,44,84,46,100,111,110,101,40,118,46,115,117,99,99,101,115,115,41,44,84,46,102,97,105,108,40,118,46,101,114,114,111,114,41,44,99,61,95,116,40,87,116,44,118,44,116,44,84,41,41,123,105,102,40,84,46,114,101,97,100,121,83,116,97,116,101,61,49,44,103,38,38,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,101,110,100,34,44,91,84,44,118,93,41,44,104,41,114,101,116,117,114,110,32,84,59,118,46,97,115,121,110,99,38,38,48,60,118,46,116,105,109,101,111,117,116,38,38,40,100,61,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,84,46,97,98,111,114,116,40,34,116,105,109,101,111,117,116,34,41,125,44,118,46,116,105,109,101,111,117,116,41,41,59,116,114,121,123,104,61,33,49,44,99,46,115,101,110,100,40,97,44,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,104,41,116,104,114,111,119,32,101,59,108,40,45,49,44,101,41,125,125,101,108,115,101,32,108,40,45,49,44,34,78,111,32,84,114,97,110,115,112,111,114,116,34,41,59,102,117,110,99,116,105,111,110,32,108,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,116,59,104,124,124,40,104,61,33,48,44,100,38,38,67,46,99,108,101,97,114,84,105,109,101,111,117,116,40,100,41,44,99,61,118,111,105,100,32,48,44,112,61,114,124,124,34,34,44,84,46,114,101,97,100,121,83,116,97,116,101,61,48,60,101,63,52,58,48,44,105,61,50,48,48,60,61,101,38,38,101,60,51,48,48,124,124,51,48,52,61,61,61,101,44,110,38,38,40,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,61,101,46,99,111,110,116,101,110,116,115,44,117,61,101,46,100,97,116,97,84,121,112,101,115,59,119,104,105,108,101,40,34,42,34,61,61,61,117,91,48,93,41,117,46,115,104,105,102,116,40,41,44,118,111,105,100,32,48,61,61,61,114,38,38,40,114,61,101,46,109,105,109,101,84,121,112,101,124,124,116,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,67,111,110,116,101,110,116,45,84,121,112,101,34,41,41,59,105,102,40,114,41,102,111,114,40,105,32,105,110,32,115,41,105,102,40,115,91,105,93,38,38,115,91,105,93,46,116,101,115,116,40,114,41,41,123,117,46,117,110,115,104,105,102,116,40,105,41,59,98,114,101,97,107,125,105,102,40,117,91,48,93,105,110,32,110,41,111,61,117,91,48,93,59,101,108,115,101,123,102,111,114,40,105,32,105,110,32,110,41,123,105,102,40,33,117,91,48,93,124,124,101,46,99,111,110,118,101,114,116,101,114,115,91,105,43,34,32,34,43,117,91,48,93,93,41,123,111,61,105,59,98,114,101,97,107,125,97,124,124,40,97,61,105,41,125,111,61,111,124,124,97,125,105,102,40,111,41,114,101,116,117,114,110,32,111,33,61,61,117,91,48,93,38,38,117,46,117,110,115,104,105,102,116,40,111,41,44,110,91,111,93,125,40,118,44,84,44,110,41,41,44,115,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,118,97,114,32,105,44,111,44,97,44,115,44,117,44,108,61,123,125,44,99,61,101,46,100,97,116,97,84,121,112,101,115,46,115,108,105,99,101,40,41,59,105,102,40,99,91,49,93,41,102,111,114,40,97,32,105,110,32,101,46,99,111,110,118,101,114,116,101,114,115,41,108,91,97,46,116,111,76,111,119,101,114,67,97,115,101,40,41,93,61,101,46,99,111,110,118,101,114,116,101,114,115,91,97,93,59,111,61,99,46,115,104,105,102,116,40,41,59,119,104,105,108,101,40,111,41,105,102,40,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,38,38,40,110,91,101,46,114,101,115,112,111,110,115,101,70,105,101,108,100,115,91,111,93,93,61,116,41,44,33,117,38,38,114,38,38,101,46,100,97,116,97,70,105,108,116,101,114,38,38,40,116,61,101,46,100,97,116,97,70,105,108,116,101,114,40,116,44,101,46,100,97,116,97,84,121,112,101,41,41,44,117,61,111,44,111,61,99,46,115,104,105,102,116,40,41,41,105,102,40,34,42,34,61,61,61,111,41,111,61,117,59,101,108,115,101,32,105,102,40,34,42,34,33,61,61,117,38,38,117,33,61,61,111,41,123,105,102,40,33,40,97,61,108,91,117,43,34,32,34,43,111,93,124,124,108,91,34,42,32,34,43,111,93,41,41,102,111,114,40,105,32,105,110,32,108,41,105,102,40,40,115,61,105,46,115,112,108,105,116,40,34,32,34,41,41,91,49,93,61,61,61,111,38,38,40,97,61,108,91,117,43,34,32,34,43,115,91,48,93,93,124,124,108,91,34,42,32,34,43,115,91,48,93,93,41,41,123,33,48,61,61,61,97,63,97,61,108,91,105,93,58,33,48,33,61,61,108,91,105,93,38,38,40,111,61,115,91,48,93,44,99,46,117,110,115,104,105,102,116,40,115,91,49,93,41,41,59,98,114,101,97,107,125,105,102,40,33,48,33,61,61,97,41,105,102,40,97,38,38,101,91,34,116,104,114,111,119,115,34,93,41,116,61,97,40,116,41,59,101,108,115,101,32,116,114,121,123,116,61,97,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,123,115,116,97,116,101,58,34,112,97,114,115,101,114,101,114,114,111,114,34,44,101,114,114,111,114,58,97,63,101,58,34,78,111,32,99,111,110,118,101,114,115,105,111,110,32,102,114,111,109,32,34,43,117,43,34,32,116,111,32,34,43,111,125,125,125,114,101,116,117,114,110,123,115,116,97,116,101,58,34,115,117,99,99,101,115,115,34,44,100,97,116,97,58,116,125,125,40,118,44,115,44,84,44,105,41,44,105,63,40,118,46,105,102,77,111,100,105,102,105,101,100,38,38,40,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,76,97,115,116,45,77,111,100,105,102,105,101,100,34,41,41,38,38,40,107,46,108,97,115,116,77,111,100,105,102,105,101,100,91,102,93,61,117,41,44,40,117,61,84,46,103,101,116,82,101,115,112,111,110,115,101,72,101,97,100,101,114,40,34,101,116,97,103,34,41,41,38,38,40,107,46,101,116,97,103,91,102,93,61,117,41,41,44,50,48,52,61,61,61,101,124,124,34,72,69,65,68,34,61,61,61,118,46,116,121,112,101,63,108,61,34,110,111,99,111,110,116,101,110,116,34,58,51,48,52,61,61,61,101,63,108,61,34,110,111,116,109,111,100,105,102,105,101,100,34,58,40,108,61,115,46,115,116,97,116,101,44,111,61,115,46,100,97,116,97,44,105,61,33,40,97,61,115,46,101,114,114,111,114,41,41,41,58,40,97,61,108,44,33,101,38,38,108,124,124,40,108,61,34,101,114,114,111,114,34,44,101,60,48,38,38,40,101,61,48,41,41,41,44,84,46,115,116,97,116,117,115,61,101,44,84,46,115,116,97,116,117,115,84,101,120,116,61,40,116,124,124,108,41,43,34,34,44,105,63,120,46,114,101,115,111,108,118,101,87,105,116,104,40,121,44,91,111,44,108,44,84,93,41,58,120,46,114,101,106,101,99,116,87,105,116,104,40,121,44,91,84,44,108,44,97,93,41,44,84,46,115,116,97,116,117,115,67,111,100,101,40,119,41,44,119,61,118,111,105,100,32,48,44,103,38,38,109,46,116,114,105,103,103,101,114,40,105,63,34,97,106,97,120,83,117,99,99,101,115,115,34,58,34,97,106,97,120,69,114,114,111,114,34,44,91,84,44,118,44,105,63,111,58,97,93,41,44,98,46,102,105,114,101,87,105,116,104,40,121,44,91,84,44,108,93,41,44,103,38,38,40,109,46,116,114,105,103,103,101,114,40,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,91,84,44,118,93,41,44,45,45,107,46,97,99,116,105,118,101,124,124,107,46,101,118,101,110,116,46,116,114,105,103,103,101,114,40,34,97,106,97,120,83,116,111,112,34,41,41,41,125,114,101,116,117,114,110,32,84,125,44,103,101,116,74,83,79,78,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,116,44,110,44,34,106,115,111,110,34,41,125,44,103,101,116,83,99,114,105,112,116,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,103,101,116,40,101,44,118,111,105,100,32,48,44,116,44,34,115,99,114,105,112,116,34,41,125,125,41,44,107,46,101,97,99,104,40,91,34,103,101,116,34,44,34,112,111,115,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,105,41,123,107,91,105,93,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,109,40,116,41,38,38,40,114,61,114,124,124,110,44,110,61,116,44,116,61,118,111,105,100,32,48,41,44,107,46,97,106,97,120,40,107,46,101,120,116,101,110,100,40,123,117,114,108,58,101,44,116,121,112,101,58,105,44,100,97,116,97,84,121,112,101,58,114,44,100,97,116,97,58,116,44,115,117,99,99,101,115,115,58,110,125,44,107,46,105,115,80,108,97,105,110,79,98,106,101,99,116,40,101,41,38,38,101,41,41,125,125,41,44,107,46,95,101,118,97,108,85,114,108,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,115,99,114,105,112,116,34,44,99,97,99,104,101,58,33,48,44,97,115,121,110,99,58,33,49,44,103,108,111,98,97,108,58,33,49,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,41,123,125,125,44,100,97,116,97,70,105,108,116,101,114,58,102,117,110,99,116,105,111,110,40,101,41,123,107,46,103,108,111,98,97,108,69,118,97,108,40,101,44,116,41,125,125,41,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,119,114,97,112,65,108,108,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,59,114,101,116,117,114,110,32,116,104,105,115,91,48,93,38,38,40,109,40,101,41,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,91,48,93,41,41,44,116,61,107,40,101,44,116,104,105,115,91,48,93,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,46,101,113,40,48,41,46,99,108,111,110,101,40,33,48,41,44,116,104,105,115,91,48,93,46,112,97,114,101,110,116,78,111,100,101,38,38,116,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,104,105,115,91,48,93,41,44,116,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,119,104,105,108,101,40,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,101,61,101,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,59,114,101,116,117,114,110,32,101,125,41,46,97,112,112,101,110,100,40,116,104,105,115,41,41,44,116,104,105,115,125,44,119,114,97,112,73,110,110,101,114,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,40,110,41,63,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,73,110,110,101,114,40,110,46,99,97,108,108,40,116,104,105,115,44,101,41,41,125,41,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,107,40,116,104,105,115,41,44,116,61,101,46,99,111,110,116,101,110,116,115,40,41,59,116,46,108,101,110,103,116,104,63,116,46,119,114,97,112,65,108,108,40,110,41,58,101,46,97,112,112,101,110,100,40,110,41,125,41,125,44,119,114,97,112,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,109,40,116,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,40,116,104,105,115,41,46,119,114,97,112,65,108,108,40,110,63,116,46,99,97,108,108,40,116,104,105,115,44,101,41,58,116,41,125,41,125,44,117,110,119,114,97,112,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,97,114,101,110,116,40,101,41,46,110,111,116,40,34,98,111,100,121,34,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,107,40,116,104,105,115,41,46,114,101,112,108,97,99,101,87,105,116,104,40,116,104,105,115,46,99,104,105,108,100,78,111,100,101,115,41,125,41,44,116,104,105,115,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,104,105,100,100,101,110,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,40,101,41,125,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,118,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,33,40,101,46,111,102,102,115,101,116,87,105,100,116,104,124,124,101,46,111,102,102,115,101,116,72,101,105,103,104,116,124,124,101,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,41,125,44,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,114,101,116,117,114,110,32,110,101,119,32,67,46,88,77,76,72,116,116,112,82,101,113,117,101,115,116,125,99,97,116,99,104,40,101,41,123,125,125,59,118,97,114,32,85,116,61,123,48,58,50,48,48,44,49,50,50,51,58,50,48,52,125,44,88,116,61,107,46,97,106,97,120,83,101,116,116,105,110,103,115,46,120,104,114,40,41,59,121,46,99,111,114,115,61,33,33,88,116,38,38,34,119,105,116,104,67,114,101,100,101,110,116,105,97,108,115,34,105,110,32,88,116,44,121,46,97,106,97,120,61,88,116,61,33,33,88,116,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,102,117,110,99,116,105,111,110,40,105,41,123,118,97,114,32,111,44,97,59,105,102,40,121,46,99,111,114,115,124,124,88,116,38,38,33,105,46,99,114,111,115,115,68,111,109,97,105,110,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,61,105,46,120,104,114,40,41,59,105,102,40,114,46,111,112,101,110,40,105,46,116,121,112,101,44,105,46,117,114,108,44,105,46,97,115,121,110,99,44,105,46,117,115,101,114,110,97,109,101,44,105,46,112,97,115,115,119,111,114,100,41,44,105,46,120,104,114,70,105,101,108,100,115,41,102,111,114,40,110,32,105,110,32,105,46,120,104,114,70,105,101,108,100,115,41,114,91,110,93,61,105,46,120,104,114,70,105,101,108,100,115,91,110,93,59,102,111,114,40,110,32,105,110,32,105,46,109,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,38,38,114,46,111,118,101,114,114,105,100,101,77,105,109,101,84,121,112,101,40,105,46,109,105,109,101,84,121,112,101,41,44,105,46,99,114,111,115,115,68,111,109,97,105,110,124,124,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,124,124,40,101,91,34,88,45,82,101,113,117,101,115,116,101,100,45,87,105,116,104,34,93,61,34,88,77,76,72,116,116,112,82,101,113,117,101,115,116,34,41,44,101,41,114,46,115,101,116,82,101,113,117,101,115,116,72,101,97,100,101,114,40,110,44,101,91,110,93,41,59,111,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,111,38,38,40,111,61,97,61,114,46,111,110,108,111,97,100,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,97,98,111,114,116,61,114,46,111,110,116,105,109,101,111,117,116,61,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,110,117,108,108,44,34,97,98,111,114,116,34,61,61,61,101,63,114,46,97,98,111,114,116,40,41,58,34,101,114,114,111,114,34,61,61,61,101,63,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,114,46,115,116,97,116,117,115,63,116,40,48,44,34,101,114,114,111,114,34,41,58,116,40,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,41,58,116,40,85,116,91,114,46,115,116,97,116,117,115,93,124,124,114,46,115,116,97,116,117,115,44,114,46,115,116,97,116,117,115,84,101,120,116,44,34,116,101,120,116,34,33,61,61,40,114,46,114,101,115,112,111,110,115,101,84,121,112,101,124,124,34,116,101,120,116,34,41,124,124,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,114,46,114,101,115,112,111,110,115,101,84,101,120,116,63,123,98,105,110,97,114,121,58,114,46,114,101,115,112,111,110,115,101,125,58,123,116,101,120,116,58,114,46,114,101,115,112,111,110,115,101,84,101,120,116,125,44,114,46,103,101,116,65,108,108,82,101,115,112,111,110,115,101,72,101,97,100,101,114,115,40,41,41,41,125,125,44,114,46,111,110,108,111,97,100,61,111,40,41,44,97,61,114,46,111,110,101,114,114,111,114,61,114,46,111,110,116,105,109,101,111,117,116,61,111,40,34,101,114,114,111,114,34,41,44,118,111,105,100,32,48,33,61,61,114,46,111,110,97,98,111,114,116,63,114,46,111,110,97,98,111,114,116,61,97,58,114,46,111,110,114,101,97,100,121,115,116,97,116,101,99,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,41,123,52,61,61,61,114,46,114,101,97,100,121,83,116,97,116,101,38,38,67,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,111,38,38,97,40,41,125,41,125,44,111,61,111,40,34,97,98,111,114,116,34,41,59,116,114,121,123,114,46,115,101,110,100,40,105,46,104,97,115,67,111,110,116,101,110,116,38,38,105,46,100,97,116,97,124,124,110,117,108,108,41,125,99,97,116,99,104,40,101,41,123,105,102,40,111,41,116,104,114,111,119,32,101,125,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,111,38,38,111,40,41,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,99,111,110,116,101,110,116,115,46,115,99,114,105,112,116,61,33,49,41,125,41,44,107,46,97,106,97,120,83,101,116,117,112,40,123,97,99,99,101,112,116,115,58,123,115,99,114,105,112,116,58,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,106,97,118,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,101,99,109,97,115,99,114,105,112,116,44,32,97,112,112,108,105,99,97,116,105,111,110,47,120,45,101,99,109,97,115,99,114,105,112,116,34,125,44,99,111,110,116,101,110,116,115,58,123,115,99,114,105,112,116,58,47,92,98,40,63,58,106,97,118,97,124,101,99,109,97,41,115,99,114,105,112,116,92,98,47,125,44,99,111,110,118,101,114,116,101,114,115,58,123,34,116,101,120,116,32,115,99,114,105,112,116,34,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,107,46,103,108,111,98,97,108,69,118,97,108,40,101,41,44,101,125,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,111,105,100,32,48,61,61,61,101,46,99,97,99,104,101,38,38,40,101,46,99,97,99,104,101,61,33,49,41,44,101,46,99,114,111,115,115,68,111,109,97,105,110,38,38,40,101,46,116,121,112,101,61,34,71,69,84,34,41,125,41,44,107,46,97,106,97,120,84,114,97,110,115,112,111,114,116,40,34,115,99,114,105,112,116,34,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,114,44,105,59,105,102,40,110,46,99,114,111,115,115,68,111,109,97,105,110,124,124,110,46,115,99,114,105,112,116,65,116,116,114,115,41,114,101,116,117,114,110,123,115,101,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,61,107,40,34,60,115,99,114,105,112,116,62,34,41,46,97,116,116,114,40,110,46,115,99,114,105,112,116,65,116,116,114,115,124,124,123,125,41,46,112,114,111,112,40,123,99,104,97,114,115,101,116,58,110,46,115,99,114,105,112,116,67,104,97,114,115,101,116,44,115,114,99,58,110,46,117,114,108,125,41,46,111,110,40,34,108,111,97,100,32,101,114,114,111,114,34,44,105,61,102,117,110,99,116,105,111,110,40,101,41,123,114,46,114,101,109,111,118,101,40,41,44,105,61,110,117,108,108,44,101,38,38,116,40,34,101,114,114,111,114,34,61,61,61,101,46,116,121,112,101,63,52,48,52,58,50,48,48,44,101,46,116,121,112,101,41,125,41,44,69,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,91,48,93,41,125,44,97,98,111,114,116,58,102,117,110,99,116,105,111,110,40,41,123,105,38,38,105,40,41,125,125,125,41,59,118,97,114,32,86,116,44,71,116,61,91,93,44,89,116,61,47,40,61,41,92,63,40,63,61,38,124,36,41,124,92,63,92,63,47,59,107,46,97,106,97,120,83,101,116,117,112,40,123,106,115,111,110,112,58,34,99,97,108,108,98,97,99,107,34,44,106,115,111,110,112,67,97,108,108,98,97,99,107,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,71,116,46,112,111,112,40,41,124,124,107,46,101,120,112,97,110,100,111,43,34,95,34,43,107,116,43,43,59,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,33,48,44,101,125,125,41,44,107,46,97,106,97,120,80,114,101,102,105,108,116,101,114,40,34,106,115,111,110,32,106,115,111,110,112,34,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,89,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,117,114,108,34,58,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,46,100,97,116,97,38,38,48,61,61,61,40,101,46,99,111,110,116,101,110,116,84,121,112,101,124,124,34,34,41,46,105,110,100,101,120,79,102,40,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,119,119,119,45,102,111,114,109,45,117,114,108,101,110,99,111,100,101,100,34,41,38,38,89,116,46,116,101,115,116,40,101,46,100,97,116,97,41,38,38,34,100,97,116,97,34,41,59,105,102,40,97,124,124,34,106,115,111,110,112,34,61,61,61,101,46,100,97,116,97,84,121,112,101,115,91,48,93,41,114,101,116,117,114,110,32,114,61,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,109,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,41,63,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,40,41,58,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,97,63,101,91,97,93,61,101,91,97,93,46,114,101,112,108,97,99,101,40,89,116,44,34,36,49,34,43,114,41,58,33,49,33,61,61,101,46,106,115,111,110,112,38,38,40,101,46,117,114,108,43,61,40,83,116,46,116,101,115,116,40,101,46,117,114,108,41,63,34,38,34,58,34,63,34,41,43,101,46,106,115,111,110,112,43,34,61,34,43,114,41,44,101,46,99,111,110,118,101,114,116,101,114,115,91,34,115,99,114,105,112,116,32,106,115,111,110,34,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,124,124,107,46,101,114,114,111,114,40,114,43,34,32,119,97,115,32,110,111,116,32,99,97,108,108,101,100,34,41,44,111,91,48,93,125,44,101,46,100,97,116,97,84,121,112,101,115,91,48,93,61,34,106,115,111,110,34,44,105,61,67,91,114,93,44,67,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,111,61,97,114,103,117,109,101,110,116,115,125,44,110,46,97,108,119,97,121,115,40,102,117,110,99,116,105,111,110,40,41,123,118,111,105,100,32,48,61,61,61,105,63,107,40,67,41,46,114,101,109,111,118,101,80,114,111,112,40,114,41,58,67,91,114,93,61,105,44,101,91,114,93,38,38,40,101,46,106,115,111,110,112,67,97,108,108,98,97,99,107,61,116,46,106,115,111,110,112,67,97,108,108,98,97,99,107,44,71,116,46,112,117,115,104,40,114,41,41,44,111,38,38,109,40,105,41,38,38,105,40,111,91,48,93,41,44,111,61,105,61,118,111,105,100,32,48,125,41,44,34,115,99,114,105,112,116,34,125,41,44,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,61,40,40,86,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,46,98,111,100,121,41,46,105,110,110,101,114,72,84,77,76,61,34,60,102,111,114,109,62,60,47,102,111,114,109,62,60,102,111,114,109,62,60,47,102,111,114,109,62,34,44,50,61,61,61,86,116,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,41,44,107,46,112,97,114,115,101,72,84,77,76,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,101,63,91,93,58,40,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,116,44,116,61,33,49,41,44,116,124,124,40,121,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,63,40,40,114,61,40,116,61,69,46,105,109,112,108,101,109,101,110,116,97,116,105,111,110,46,99,114,101,97,116,101,72,84,77,76,68,111,99,117,109,101,110,116,40,34,34,41,41,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,98,97,115,101,34,41,41,46,104,114,101,102,61,69,46,108,111,99,97,116,105,111,110,46,104,114,101,102,44,116,46,104,101,97,100,46,97,112,112,101,110,100,67,104,105,108,100,40,114,41,41,58,116,61,69,41,44,111,61,33,110,38,38,91,93,44,40,105,61,68,46,101,120,101,99,40,101,41,41,63,91,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,105,91,49,93,41,93,58,40,105,61,119,101,40,91,101,93,44,116,44,111,41,44,111,38,38,111,46,108,101,110,103,116,104,38,38,107,40,111,41,46,114,101,109,111,118,101,40,41,44,107,46,109,101,114,103,101,40,91,93,44,105,46,99,104,105,108,100,78,111,100,101,115,41,41,41,59,118,97,114,32,114,44,105,44,111,125,44,107,46,102,110,46,108,111,97,100,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,61,116,104,105,115,44,115,61,101,46,105,110,100,101,120,79,102,40,34,32,34,41,59,114,101,116,117,114,110,45,49,60,115,38,38,40,114,61,109,116,40,101,46,115,108,105,99,101,40,115,41,41,44,101,61,101,46,115,108,105,99,101,40,48,44,115,41,41,44,109,40,116,41,63,40,110,61,116,44,116,61,118,111,105,100,32,48,41,58,116,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,40,105,61,34,80,79,83,84,34,41,44,48,60,97,46,108,101,110,103,116,104,38,38,107,46,97,106,97,120,40,123,117,114,108,58,101,44,116,121,112,101,58,105,124,124,34,71,69,84,34,44,100,97,116,97,84,121,112,101,58,34,104,116,109,108,34,44,100,97,116,97,58,116,125,41,46,100,111,110,101,40,102,117,110,99,116,105,111,110,40,101,41,123,111,61,97,114,103,117,109,101,110,116,115,44,97,46,104,116,109,108,40,114,63,107,40,34,60,100,105,118,62,34,41,46,97,112,112,101,110,100,40,107,46,112,97,114,115,101,72,84,77,76,40,101,41,41,46,102,105,110,100,40,114,41,58,101,41,125,41,46,97,108,119,97,121,115,40,110,38,38,102,117,110,99,116,105,111,110,40,101,44,116,41,123,97,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,116,104,105,115,44,111,124,124,91,101,46,114,101,115,112,111,110,115,101,84,101,120,116,44,116,44,101,93,41,125,41,125,41,44,116,104,105,115,125,44,107,46,101,97,99,104,40,91,34,97,106,97,120,83,116,97,114,116,34,44,34,97,106,97,120,83,116,111,112,34,44,34,97,106,97,120,67,111,109,112,108,101,116,101,34,44,34,97,106,97,120,69,114,114,111,114,34,44,34,97,106,97,120,83,117,99,99,101,115,115,34,44,34,97,106,97,120,83,101,110,100,34,93,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,41,125,125,41,44,107,46,101,120,112,114,46,112,115,101,117,100,111,115,46,97,110,105,109,97,116,101,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,46,103,114,101,112,40,107,46,116,105,109,101,114,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,61,61,61,101,46,101,108,101,109,125,41,46,108,101,110,103,116,104,125,44,107,46,111,102,102,115,101,116,61,123,115,101,116,79,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,44,105,44,111,44,97,44,115,44,117,44,108,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,44,99,61,107,40,101,41,44,102,61,123,125,59,34,115,116,97,116,105,99,34,61,61,61,108,38,38,40,101,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,114,101,108,97,116,105,118,101,34,41,44,115,61,99,46,111,102,102,115,101,116,40,41,44,111,61,107,46,99,115,115,40,101,44,34,116,111,112,34,41,44,117,61,107,46,99,115,115,40,101,44,34,108,101,102,116,34,41,44,40,34,97,98,115,111,108,117,116,101,34,61,61,61,108,124,124,34,102,105,120,101,100,34,61,61,61,108,41,38,38,45,49,60,40,111,43,117,41,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,63,40,97,61,40,114,61,99,46,112,111,115,105,116,105,111,110,40,41,41,46,116,111,112,44,105,61,114,46,108,101,102,116,41,58,40,97,61,112,97,114,115,101,70,108,111,97,116,40,111,41,124,124,48,44,105,61,112,97,114,115,101,70,108,111,97,116,40,117,41,124,124,48,41,44,109,40,116,41,38,38,40,116,61,116,46,99,97,108,108,40,101,44,110,44,107,46,101,120,116,101,110,100,40,123,125,44,115,41,41,41,44,110,117,108,108,33,61,116,46,116,111,112,38,38,40,102,46,116,111,112,61,116,46,116,111,112,45,115,46,116,111,112,43,97,41,44,110,117,108,108,33,61,116,46,108,101,102,116,38,38,40,102,46,108,101,102,116,61,116,46,108,101,102,116,45,115,46,108,101,102,116,43,105,41,44,34,117,115,105,110,103,34,105,110,32,116,63,116,46,117,115,105,110,103,46,99,97,108,108,40,101,44,102,41,58,99,46,99,115,115,40,102,41,125,125,44,107,46,102,110,46,101,120,116,101,110,100,40,123,111,102,102,115,101,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,116,63,116,104,105,115,58,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,107,46,111,102,102,115,101,116,46,115,101,116,79,102,102,115,101,116,40,116,104,105,115,44,116,44,101,41,125,41,59,118,97,114,32,101,44,110,44,114,61,116,104,105,115,91,48,93,59,114,101,116,117,114,110,32,114,63,114,46,103,101,116,67,108,105,101,110,116,82,101,99,116,115,40,41,46,108,101,110,103,116,104,63,40,101,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,44,123,116,111,112,58,101,46,116,111,112,43,110,46,112,97,103,101,89,79,102,102,115,101,116,44,108,101,102,116,58,101,46,108,101,102,116,43,110,46,112,97,103,101,88,79,102,102,115,101,116,125,41,58,123,116,111,112,58,48,44,108,101,102,116,58,48,125,58,118,111,105,100,32,48,125,44,112,111,115,105,116,105,111,110,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,91,48,93,41,123,118,97,114,32,101,44,116,44,110,44,114,61,116,104,105,115,91,48,93,44,105,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,59,105,102,40,34,102,105,120,101,100,34,61,61,61,107,46,99,115,115,40,114,44,34,112,111,115,105,116,105,111,110,34,41,41,116,61,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,101,108,115,101,123,116,61,116,104,105,115,46,111,102,102,115,101,116,40,41,44,110,61,114,46,111,119,110,101,114,68,111,99,117,109,101,110,116,44,101,61,114,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,119,104,105,108,101,40,101,38,38,40,101,61,61,61,110,46,98,111,100,121,124,124,101,61,61,61,110,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,112,97,114,101,110,116,78,111,100,101,59,101,38,38,101,33,61,61,114,38,38,49,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,40,105,61,107,40,101,41,46,111,102,102,115,101,116,40,41,41,46,116,111,112,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,84,111,112,87,105,100,116,104,34,44,33,48,41,44,105,46,108,101,102,116,43,61,107,46,99,115,115,40,101,44,34,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,34,44,33,48,41,41,125,114,101,116,117,114,110,123,116,111,112,58,116,46,116,111,112,45,105,46,116,111,112,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,84,111,112,34,44,33,48,41,44,108,101,102,116,58,116,46,108,101,102,116,45,105,46,108,101,102,116,45,107,46,99,115,115,40,114,44,34,109,97,114,103,105,110,76,101,102,116,34,44,33,48,41,125,125,125,44,111,102,102,115,101,116,80,97,114,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,111,102,102,115,101,116,80,97,114,101,110,116,59,119,104,105,108,101,40,101,38,38,34,115,116,97,116,105,99,34,61,61,61,107,46,99,115,115,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,101,61,101,46,111,102,102,115,101,116,80,97,114,101,110,116,59,114,101,116,117,114,110,32,101,124,124,105,101,125,41,125,125,41,44,107,46,101,97,99,104,40,123,115,99,114,111,108,108,76,101,102,116,58,34,112,97,103,101,88,79,102,102,115,101,116,34,44,115,99,114,111,108,108,84,111,112,58,34,112,97,103,101,89,79,102,102,115,101,116,34,125,44,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,111,61,34,112,97,103,101,89,79,102,102,115,101,116,34,61,61,61,105,59,107,46,102,110,91,116,93,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,105,102,40,120,40,101,41,63,114,61,101,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,38,38,40,114,61,101,46,100,101,102,97,117,108,116,86,105,101,119,41,44,118,111,105,100,32,48,61,61,61,110,41,114,101,116,117,114,110,32,114,63,114,91,105,93,58,101,91,116,93,59,114,63,114,46,115,99,114,111,108,108,84,111,40,111,63,114,46,112,97,103,101,88,79,102,102,115,101,116,58,110,44,111,63,110,58,114,46,112,97,103,101,89,79,102,102,115,101,116,41,58,101,91,116,93,61,110,125,44,116,44,101,44,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,125,125,41,44,107,46,101,97,99,104,40,91,34,116,111,112,34,44,34,108,101,102,116,34,93,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,99,115,115,72,111,111,107,115,91,110,93,61,122,101,40,121,46,112,105,120,101,108,80,111,115,105,116,105,111,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,61,95,101,40,101,44,110,41,44,36,101,46,116,101,115,116,40,116,41,63,107,40,101,41,46,112,111,115,105,116,105,111,110,40,41,91,110,93,43,34,112,120,34,58,116,125,41,125,41,44,107,46,101,97,99,104,40,123,72,101,105,103,104,116,58,34,104,101,105,103,104,116,34,44,87,105,100,116,104,58,34,119,105,100,116,104,34,125,44,102,117,110,99,116,105,111,110,40,97,44,115,41,123,107,46,101,97,99,104,40,123,112,97,100,100,105,110,103,58,34,105,110,110,101,114,34,43,97,44,99,111,110,116,101,110,116,58,115,44,34,34,58,34,111,117,116,101,114,34,43,97,125,44,102,117,110,99,116,105,111,110,40,114,44,111,41,123,107,46,102,110,91,111,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,40,114,124,124,34,98,111,111,108,101,97,110,34,33,61,116,121,112,101,111,102,32,101,41,44,105,61,114,124,124,40,33,48,61,61,61,101,124,124,33,48,61,61,61,116,63,34,109,97,114,103,105,110,34,58,34,98,111,114,100,101,114,34,41,59,114,101,116,117,114,110,32,95,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,120,40,101,41,63,48,61,61,61,111,46,105,110,100,101,120,79,102,40,34,111,117,116,101,114,34,41,63,101,91,34,105,110,110,101,114,34,43,97,93,58,101,46,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,91,34,99,108,105,101,110,116,34,43,97,93,58,57,61,61,61,101,46,110,111,100,101,84,121,112,101,63,40,114,61,101,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,77,97,116,104,46,109,97,120,40,101,46,98,111,100,121,91,34,115,99,114,111,108,108,34,43,97,93,44,114,91,34,115,99,114,111,108,108,34,43,97,93,44,101,46,98,111,100,121,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,111,102,102,115,101,116,34,43,97,93,44,114,91,34,99,108,105,101,110,116,34,43,97,93,41,41,58,118,111,105,100,32,48,61,61,61,110,63,107,46,99,115,115,40,101,44,116,44,105,41,58,107,46,115,116,121,108,101,40,101,44,116,44,110,44,105,41,125,44,115,44,110,63,101,58,118,111,105,100,32,48,44,110,41,125,125,41,125,41,44,107,46,101,97,99,104,40,34,98,108,117,114,32,102,111,99,117,115,32,102,111,99,117,115,105,110,32,102,111,99,117,115,111,117,116,32,114,101,115,105,122,101,32,115,99,114,111,108,108,32,99,108,105,99,107,32,100,98,108,99,108,105,99,107,32,109,111,117,115,101,100,111,119,110,32,109,111,117,115,101,117,112,32,109,111,117,115,101,109,111,118,101,32,109,111,117,115,101,111,118,101,114,32,109,111,117,115,101,111,117,116,32,109,111,117,115,101,101,110,116,101,114,32,109,111,117,115,101,108,101,97,118,101,32,99,104,97,110,103,101,32,115,101,108,101,99,116,32,115,117,98,109,105,116,32,107,101,121,100,111,119,110,32,107,101,121,112,114,101,115,115,32,107,101,121,117,112,32,99,111,110,116,101,120,116,109,101,110,117,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,107,46,102,110,91,110,93,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,48,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,110,40,110,44,110,117,108,108,44,101,44,116,41,58,116,104,105,115,46,116,114,105,103,103,101,114,40,110,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,104,111,118,101,114,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,117,115,101,101,110,116,101,114,40,101,41,46,109,111,117,115,101,108,101,97,118,101,40,116,124,124,101,41,125,125,41,44,107,46,102,110,46,101,120,116,101,110,100,40,123,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,101,44,110,117,108,108,44,116,44,110,41,125,44,117,110,98,105,110,100,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,102,102,40,101,44,110,117,108,108,44,116,41,125,44,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,114,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,110,40,116,44,101,44,110,44,114,41,125,44,117,110,100,101,108,101,103,97,116,101,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,49,61,61,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,116,104,105,115,46,111,102,102,40,101,44,34,42,42,34,41,58,116,104,105,115,46,111,102,102,40,116,44,101,124,124,34,42,42,34,44,110,41,125,125,41,44,107,46,112,114,111,120,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,44,114,44,105,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,116,38,38,40,110,61,101,91,116,93,44,116,61,101,44,101,61,110,41,44,109,40,101,41,41,114,101,116,117,114,110,32,114,61,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,50,41,44,40,105,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,116,124,124,116,104,105,115,44,114,46,99,111,110,99,97,116,40,115,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,41,46,103,117,105,100,61,101,46,103,117,105,100,61,101,46,103,117,105,100,124,124,107,46,103,117,105,100,43,43,44,105,125,44,107,46,104,111,108,100,82,101,97,100,121,61,102,117,110,99,116,105,111,110,40,101,41,123,101,63,107,46,114,101,97,100,121,87,97,105,116,43,43,58,107,46,114,101,97,100,121,40,33,48,41,125,44,107,46,105,115,65,114,114,97,121,61,65,114,114,97,121,46,105,115,65,114,114,97,121,44,107,46,112,97,114,115,101,74,83,79,78,61,74,83,79,78,46,112,97,114,115,101,44,107,46,110,111,100,101,78,97,109,101,61,65,44,107,46,105,115,70,117,110,99,116,105,111,110,61,109,44,107,46,105,115,87,105,110,100,111,119,61,120,44,107,46,99,97,109,101,108,67,97,115,101,61,86,44,107,46,116,121,112,101,61,119,44,107,46,110,111,119,61,68,97,116,101,46,110,111,119,44,107,46,105,115,78,117,109,101,114,105,99,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,107,46,116,121,112,101,40,101,41,59,114,101,116,117,114,110,40,34,110,117,109,98,101,114,34,61,61,61,116,124,124,34,115,116,114,105,110,103,34,61,61,61,116,41,38,38,33,105,115,78,97,78,40,101,45,112,97,114,115,101,70,108,111,97,116,40,101,41,41,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,38,38,100,101,102,105,110,101,40,34,106,113,117,101,114,121,34,44,91,93,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,125,41,59,118,97,114,32,81,116,61,67,46,106,81,117,101,114,121,44,74,116,61,67,46,36,59,114,101,116,117,114,110,32,107,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,67,46,36,61,61,61,107,38,38,40,67,46,36,61,74,116,41,44,101,38,38,67,46,106,81,117,101,114,121,61,61,61,107,38,38,40,67,46,106,81,117,101,114,121,61,81,116,41,44,107,125,44,101,124,124,40,67,46,106,81,117,101,114,121,61,67,46,36,61,107,41,44,107,125,41,59,10,47,42,33,10,32,32,42,32,66,111,111,116,115,116,114,97,112,32,118,52,46,51,46,49,32,40,104,116,116,112,115,58,47,47,103,101,116,98,111,111,116,115,116,114,97,112,46,99,111,109,47,41,10,32,32,42,32,67,111,112,121,114,105,103,104,116,32,50,48,49,49,45,50,48,49,57,32,84,104,101,32,66,111,111,116,115,116,114,97,112,32,65,117,116,104,111,114,115,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,103,114,97,112,104,115,47,99,111,110,116,114,105,98,117,116,111,114,115,41,10,32,32,42,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,40,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,116,119,98,115,47,98,111,111,116,115,116,114,97,112,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,41,10,32,32,42,47,10,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,101,40,101,120,112,111,114,116,115,44,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,101,120,112,111,114,116,115,34,44,34,106,113,117,101,114,121,34,93,44,101,41,58,101,40,40,116,61,116,124,124,115,101,108,102,41,46,98,111,111,116,115,116,114,97,112,61,123,125,44,116,46,106,81,117,101,114,121,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,116,44,112,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,102,117,110,99,116,105,111,110,32,115,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,102,117,110,99,116,105,111,110,32,108,40,111,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,114,61,110,117,108,108,33,61,97,114,103,117,109,101,110,116,115,91,116,93,63,97,114,103,117,109,101,110,116,115,91,116,93,58,123,125,44,101,61,79,98,106,101,99,116,46,107,101,121,115,40,114,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,38,38,40,101,61,101,46,99,111,110,99,97,116,40,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,40,114,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,68,101,115,99,114,105,112,116,111,114,40,114,44,116,41,46,101,110,117,109,101,114,97,98,108,101,125,41,41,41,44,101,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,44,105,59,101,61,111,44,105,61,114,91,110,61,116,93,44,110,32,105,110,32,101,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,110,44,123,118,97,108,117,101,58,105,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,101,91,110,93,61,105,125,41,125,114,101,116,117,114,110,32,111,125,112,61,112,38,38,112,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,112,46,100,101,102,97,117,108,116,58,112,59,118,97,114,32,101,61,34,116,114,97,110,115,105,116,105,111,110,101,110,100,34,59,102,117,110,99,116,105,111,110,32,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,33,49,59,114,101,116,117,114,110,32,112,40,116,104,105,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,110,61,33,48,125,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,124,124,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,101,41,125,44,116,41,44,116,104,105,115,125,118,97,114,32,109,61,123,84,82,65,78,83,73,84,73,79,78,95,69,78,68,58,34,98,115,84,114,97,110,115,105,116,105,111,110,69,110,100,34,44,103,101,116,85,73,68,58,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,59,116,43,61,126,126,40,49,101,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,116,41,59,41,59,114,101,116,117,114,110,32,116,125,44,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,97,114,103,101,116,34,41,59,105,102,40,33,101,124,124,34,35,34,61,61,61,101,41,123,118,97,114,32,110,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,41,59,101,61,110,38,38,34,35,34,33,61,61,110,63,110,46,116,114,105,109,40,41,58,34,34,125,116,114,121,123,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,63,101,58,110,117,108,108,125,99,97,116,99,104,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,125,125,44,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,48,59,118,97,114,32,101,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,117,114,97,116,105,111,110,34,41,44,110,61,112,40,116,41,46,99,115,115,40,34,116,114,97,110,115,105,116,105,111,110,45,100,101,108,97,121,34,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,41,44,111,61,112,97,114,115,101,70,108,111,97,116,40,110,41,59,114,101,116,117,114,110,32,105,124,124,111,63,40,101,61,101,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,110,61,110,46,115,112,108,105,116,40,34,44,34,41,91,48,93,44,49,101,51,42,40,112,97,114,115,101,70,108,111,97,116,40,101,41,43,112,97,114,115,101,70,108,111,97,116,40,110,41,41,41,58,48,125,44,114,101,102,108,111,119,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,72,101,105,103,104,116,125,44,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,125,44,115,117,112,112,111,114,116,115,84,114,97,110,115,105,116,105,111,110,69,110,100,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,101,41,125,44,105,115,69,108,101,109,101,110,116,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,91,48,93,124,124,116,41,46,110,111,100,101,84,121,112,101,125,44,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,105,102,40,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,41,123,118,97,114,32,111,61,110,91,105,93,44,114,61,101,91,105,93,44,115,61,114,38,38,109,46,105,115,69,108,101,109,101,110,116,40,114,41,63,34,101,108,101,109,101,110,116,34,58,40,97,61,114,44,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,97,41,46,109,97,116,99,104,40,47,92,115,40,91,97,45,122,93,43,41,47,105,41,91,49,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,59,105,102,40,33,110,101,119,32,82,101,103,69,120,112,40,111,41,46,116,101,115,116,40,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,39,58,32,79,112,116,105,111,110,32,34,39,43,105,43,39,34,32,112,114,111,118,105,100,101,100,32,116,121,112,101,32,34,39,43,115,43,39,34,32,98,117,116,32,101,120,112,101,99,116,101,100,32,116,121,112,101,32,34,39,43,111,43,39,34,46,39,41,125,118,97,114,32,97,125,44,102,105,110,100,83,104,97,100,111,119,82,111,111,116,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,97,116,116,97,99,104,83,104,97,100,111,119,41,114,101,116,117,114,110,32,110,117,108,108,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,46,103,101,116,82,111,111,116,78,111,100,101,41,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,63,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,110,117,108,108,59,118,97,114,32,101,61,116,46,103,101,116,82,111,111,116,78,111,100,101,40,41,59,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,104,97,100,111,119,82,111,111,116,63,101,58,110,117,108,108,125,125,59,112,46,102,110,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,61,110,44,112,46,101,118,101,110,116,46,115,112,101,99,105,97,108,91,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,93,61,123,98,105,110,100,84,121,112,101,58,101,44,100,101,108,101,103,97,116,101,84,121,112,101,58,101,44,104,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,116,104,105,115,41,41,114,101,116,117,114,110,32,116,46,104,97,110,100,108,101,79,98,106,46,104,97,110,100,108,101,114,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,59,118,97,114,32,111,61,34,97,108,101,114,116,34,44,114,61,34,98,115,46,97,108,101,114,116,34,44,97,61,34,46,34,43,114,44,99,61,112,46,102,110,91,111,93,44,104,61,123,67,76,79,83,69,58,34,99,108,111,115,101,34,43,97,44,67,76,79,83,69,68,58,34,99,108,111,115,101,100,34,43,97,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,97,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,61,34,97,108,101,114,116,34,44,102,61,34,102,97,100,101,34,44,100,61,34,115,104,111,119,34,44,103,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,116,38,38,40,101,61,116,104,105,115,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,40,116,41,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,40,101,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,116,104,105,115,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,40,101,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,82,111,111,116,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,44,110,61,33,49,59,114,101,116,117,114,110,32,101,38,38,40,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,41,44,110,124,124,40,110,61,112,40,116,41,46,99,108,111,115,101,115,116,40,34,46,34,43,117,41,91,48,93,41,44,110,125,44,116,46,95,116,114,105,103,103,101,114,67,108,111,115,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,104,46,67,76,79,83,69,41,59,114,101,116,117,114,110,32,112,40,116,41,46,116,114,105,103,103,101,114,40,101,41,44,101,125,44,116,46,95,114,101,109,111,118,101,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,100,41,44,112,40,101,41,46,104,97,115,67,108,97,115,115,40,102,41,41,123,118,97,114,32,116,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,101,41,59,112,40,101,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,44,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,41,125,101,108,115,101,32,116,104,105,115,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,40,101,41,125,44,116,46,95,100,101,115,116,114,111,121,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,41,46,100,101,116,97,99,104,40,41,46,116,114,105,103,103,101,114,40,104,46,67,76,79,83,69,68,41,46,114,101,109,111,118,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,114,41,59,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,114,44,101,41,41,44,34,99,108,111,115,101,34,61,61,61,110,38,38,101,91,110,93,40,116,104,105,115,41,125,41,125,44,105,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,99,108,111,115,101,40,116,104,105,115,41,125,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,104,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,97,108,101,114,116,34,93,39,44,103,46,95,104,97,110,100,108,101,68,105,115,109,105,115,115,40,110,101,119,32,103,41,41,44,112,46,102,110,91,111,93,61,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,44,112,46,102,110,91,111,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,93,61,99,44,103,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,61,34,98,117,116,116,111,110,34,44,118,61,34,98,115,46,98,117,116,116,111,110,34,44,121,61,34,46,34,43,118,44,69,61,34,46,100,97,116,97,45,97,112,105,34,44,98,61,112,46,102,110,91,95,93,44,119,61,34,97,99,116,105,118,101,34,44,67,61,34,98,116,110,34,44,84,61,34,102,111,99,117,115,34,44,83,61,39,91,100,97,116,97,45,116,111,103,103,108,101,94,61,34,98,117,116,116,111,110,34,93,39,44,68,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,98,117,116,116,111,110,115,34,93,39,44,73,61,39,105,110,112,117,116,58,110,111,116,40,91,116,121,112,101,61,34,104,105,100,100,101,110,34,93,41,39,44,65,61,34,46,97,99,116,105,118,101,34,44,79,61,34,46,98,116,110,34,44,78,61,123,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,121,43,69,44,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,58,34,102,111,99,117,115,34,43,121,43,69,43,34,32,98,108,117,114,34,43,121,43,69,125,44,107,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,33,48,44,101,61,33,48,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,68,41,91,48,93,59,105,102,40,110,41,123,118,97,114,32,105,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,73,41,59,105,102,40,105,41,123,105,102,40,34,114,97,100,105,111,34,61,61,61,105,46,116,121,112,101,41,105,102,40,105,46,99,104,101,99,107,101,100,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,116,61,33,49,59,101,108,115,101,123,118,97,114,32,111,61,110,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,65,41,59,111,38,38,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,119,41,125,105,102,40,116,41,123,105,102,40,105,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,104,97,115,65,116,116,114,105,98,117,116,101,40,34,100,105,115,97,98,108,101,100,34,41,124,124,105,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,124,124,110,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,34,100,105,115,97,98,108,101,100,34,41,41,114,101,116,117,114,110,59,105,46,99,104,101,99,107,101,100,61,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,44,112,40,105,41,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,125,105,46,102,111,99,117,115,40,41,44,101,61,33,49,125,125,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,112,114,101,115,115,101,100,34,44,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,119,41,41,44,116,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,119,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,118,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,118,41,59,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,118,44,116,41,41,44,34,116,111,103,103,108,101,34,61,61,61,101,38,38,116,91,101,93,40,41,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,110,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,78,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,101,61,116,46,116,97,114,103,101,116,59,112,40,101,41,46,104,97,115,67,108,97,115,115,40,67,41,124,124,40,101,61,112,40,101,41,46,99,108,111,115,101,115,116,40,79,41,41,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,78,46,70,79,67,85,83,95,66,76,85,82,95,68,65,84,65,95,65,80,73,44,83,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,79,41,91,48,93,59,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,84,44,47,94,102,111,99,117,115,40,105,110,41,63,36,47,46,116,101,115,116,40,116,46,116,121,112,101,41,41,125,41,44,112,46,102,110,91,95,93,61,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,95,93,46,67,111,110,115,116,114,117,99,116,111,114,61,107,44,112,46,102,110,91,95,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,95,93,61,98,44,107,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,76,61,34,99,97,114,111,117,115,101,108,34,44,120,61,34,98,115,46,99,97,114,111,117,115,101,108,34,44,80,61,34,46,34,43,120,44,72,61,34,46,100,97,116,97,45,97,112,105,34,44,106,61,112,46,102,110,91,76,93,44,82,61,123,105,110,116,101,114,118,97,108,58,53,101,51,44,107,101,121,98,111,97,114,100,58,33,48,44,115,108,105,100,101,58,33,49,44,112,97,117,115,101,58,34,104,111,118,101,114,34,44,119,114,97,112,58,33,48,44,116,111,117,99,104,58,33,48,125,44,70,61,123,105,110,116,101,114,118,97,108,58,34,40,110,117,109,98,101,114,124,98,111,111,108,101,97,110,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,115,108,105,100,101,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,112,97,117,115,101,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,119,114,97,112,58,34,98,111,111,108,101,97,110,34,44,116,111,117,99,104,58,34,98,111,111,108,101,97,110,34,125,44,77,61,34,110,101,120,116,34,44,87,61,34,112,114,101,118,34,44,85,61,34,108,101,102,116,34,44,66,61,34,114,105,103,104,116,34,44,113,61,123,83,76,73,68,69,58,34,115,108,105,100,101,34,43,80,44,83,76,73,68,58,34,115,108,105,100,34,43,80,44,75,69,89,68,79,87,78,58,34,107,101,121,100,111,119,110,34,43,80,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,80,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,80,44,84,79,85,67,72,83,84,65,82,84,58,34,116,111,117,99,104,115,116,97,114,116,34,43,80,44,84,79,85,67,72,77,79,86,69,58,34,116,111,117,99,104,109,111,118,101,34,43,80,44,84,79,85,67,72,69,78,68,58,34,116,111,117,99,104,101,110,100,34,43,80,44,80,79,73,78,84,69,82,68,79,87,78,58,34,112,111,105,110,116,101,114,100,111,119,110,34,43,80,44,80,79,73,78,84,69,82,85,80,58,34,112,111,105,110,116,101,114,117,112,34,43,80,44,68,82,65,71,95,83,84,65,82,84,58,34,100,114,97,103,115,116,97,114,116,34,43,80,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,80,43,72,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,80,43,72,125,44,75,61,34,99,97,114,111,117,115,101,108,34,44,81,61,34,97,99,116,105,118,101,34,44,86,61,34,115,108,105,100,101,34,44,89,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,114,105,103,104,116,34,44,122,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,108,101,102,116,34,44,88,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,34,44,71,61,34,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,36,61,34,112,111,105,110,116,101,114,45,101,118,101,110,116,34,44,74,61,34,46,97,99,116,105,118,101,34,44,90,61,34,46,97,99,116,105,118,101,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,116,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,34,44,101,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,32,105,109,103,34,44,110,116,61,34,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,110,101,120,116,44,32,46,99,97,114,111,117,115,101,108,45,105,116,101,109,45,112,114,101,118,34,44,105,116,61,34,46,99,97,114,111,117,115,101,108,45,105,110,100,105,99,97,116,111,114,115,34,44,111,116,61,34,91,100,97,116,97,45,115,108,105,100,101,93,44,32,91,100,97,116,97,45,115,108,105,100,101,45,116,111,93,34,44,114,116,61,39,91,100,97,116,97,45,114,105,100,101,61,34,99,97,114,111,117,115,101,108,34,93,39,44,115,116,61,123,84,79,85,67,72,58,34,116,111,117,99,104,34,44,80,69,78,58,34,112,101,110,34,125,44,97,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,116,104,105,115,46,116,111,117,99,104,84,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,116,111,117,99,104,83,116,97,114,116,88,61,48,44,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,61,48,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,116,41,44,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,61,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,124,124,48,60,110,97,118,105,103,97,116,111,114,46,109,97,120,84,111,117,99,104,80,111,105,110,116,115,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,61,66,111,111,108,101,97,110,40,119,105,110,100,111,119,46,80,111,105,110,116,101,114,69,118,101,110,116,124,124,119,105,110,100,111,119,46,77,83,80,111,105,110,116,101,114,69,118,101,110,116,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,114,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,77,41,125,44,116,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,33,100,111,99,117,109,101,110,116,46,104,105,100,100,101,110,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,34,104,105,100,100,101,110,34,33,61,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,115,115,40,34,118,105,115,105,98,105,108,105,116,121,34,41,38,38,116,104,105,115,46,110,101,120,116,40,41,125,44,116,46,112,114,101,118,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,124,124,116,104,105,115,46,95,115,108,105,100,101,40,87,41,125,44,116,46,112,97,117,115,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,116,41,38,38,40,109,46,116,114,105,103,103,101,114,84,114,97,110,115,105,116,105,111,110,69,110,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,99,121,99,108,101,40,33,48,41,41,44,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,125,44,116,46,99,121,99,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,116,124,124,40,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,33,49,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,38,38,40,99,108,101,97,114,73,110,116,101,114,118,97,108,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,38,38,33,116,104,105,115,46,95,105,115,80,97,117,115,101,100,38,38,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,115,101,116,73,110,116,101,114,118,97,108,40,40,100,111,99,117,109,101,110,116,46,118,105,115,105,98,105,108,105,116,121,83,116,97,116,101,63,116,104,105,115,46,110,101,120,116,87,104,101,110,86,105,115,105,98,108,101,58,116,104,105,115,46,110,101,120,116,41,46,98,105,110,100,40,116,104,105,115,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,44,116,46,116,111,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,59,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,41,59,105,102,40,33,40,116,62,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,124,124,116,60,48,41,41,105,102,40,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,41,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,113,46,83,76,73,68,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,116,111,40,116,41,125,41,59,101,108,115,101,123,105,102,40,110,61,61,61,116,41,114,101,116,117,114,110,32,116,104,105,115,46,112,97,117,115,101,40,41,44,118,111,105,100,32,116,104,105,115,46,99,121,99,108,101,40,41,59,118,97,114,32,105,61,110,60,116,63,77,58,87,59,116,104,105,115,46,95,115,108,105,100,101,40,105,44,116,104,105,115,46,95,105,116,101,109,115,91,116,93,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,80,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,120,41,44,116,104,105,115,46,95,105,116,101,109,115,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,116,101,114,118,97,108,61,110,117,108,108,44,116,104,105,115,46,95,105,115,80,97,117,115,101,100,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,82,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,76,44,116,44,70,41,44,116,125,44,116,46,95,104,97,110,100,108,101,83,119,105,112,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,77,97,116,104,46,97,98,115,40,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,41,59,105,102,40,33,40,116,60,61,52,48,41,41,123,118,97,114,32,101,61,116,47,116,104,105,115,46,116,111,117,99,104,68,101,108,116,97,88,59,48,60,101,38,38,116,104,105,115,46,112,114,101,118,40,41,44,101,60,48,38,38,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,75,69,89,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,107,101,121,100,111,119,110,40,116,41,125,41,44,34,104,111,118,101,114,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,77,79,85,83,69,69,78,84,69,82,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,112,97,117,115,101,40,116,41,125,41,46,111,110,40,113,46,77,79,85,83,69,76,69,65,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,99,121,99,108,101,40,116,41,125,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,117,99,104,38,38,116,104,105,115,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,44,116,46,95,97,100,100,84,111,117,99,104,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,116,111,117,99,104,83,117,112,112,111,114,116,101,100,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,63,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,58,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,124,124,40,110,46,116,111,117,99,104,83,116,97,114,116,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,41,125,44,105,61,102,117,110,99,116,105,111,110,40,116,41,123,110,46,95,112,111,105,110,116,101,114,69,118,101,110,116,38,38,115,116,91,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,112,111,105,110,116,101,114,84,121,112,101,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,38,38,40,110,46,116,111,117,99,104,68,101,108,116,97,88,61,116,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,41,44,110,46,95,104,97,110,100,108,101,83,119,105,112,101,40,41,44,34,104,111,118,101,114,34,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,117,115,101,38,38,40,110,46,112,97,117,115,101,40,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,38,38,99,108,101,97,114,84,105,109,101,111,117,116,40,110,46,116,111,117,99,104,84,105,109,101,111,117,116,41,44,110,46,116,111,117,99,104,84,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,99,121,99,108,101,40,116,41,125,44,53,48,48,43,110,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,41,41,125,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,116,41,41,46,111,110,40,113,46,68,82,65,71,95,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,41,44,116,104,105,115,46,95,112,111,105,110,116,101,114,69,118,101,110,116,63,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,68,79,87,78,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,80,79,73,78,84,69,82,85,80,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,36,41,41,58,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,83,84,65,82,84,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,77,79,86,69,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,59,40,101,61,116,41,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,49,60,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,46,108,101,110,103,116,104,63,110,46,116,111,117,99,104,68,101,108,116,97,88,61,48,58,110,46,116,111,117,99,104,68,101,108,116,97,88,61,101,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,99,108,105,101,110,116,88,45,110,46,116,111,117,99,104,83,116,97,114,116,88,125,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,113,46,84,79,85,67,72,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,40,116,41,125,41,41,125,125,44,116,46,95,107,101,121,100,111,119,110,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,41,115,119,105,116,99,104,40,116,46,119,104,105,99,104,41,123,99,97,115,101,32,51,55,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,101,118,40,41,59,98,114,101,97,107,59,99,97,115,101,32,51,57,58,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,110,101,120,116,40,41,125,125,44,116,46,95,103,101,116,73,116,101,109,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,116,101,109,115,61,116,38,38,116,46,112,97,114,101,110,116,78,111,100,101,63,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,112,97,114,101,110,116,78,111,100,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,116,41,41,58,91,93,44,116,104,105,115,46,95,105,116,101,109,115,46,105,110,100,101,120,79,102,40,116,41,125,44,116,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,61,61,61,77,44,105,61,116,61,61,61,87,44,111,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,101,41,44,114,61,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,59,105,102,40,40,105,38,38,48,61,61,61,111,124,124,110,38,38,111,61,61,61,114,41,38,38,33,116,104,105,115,46,95,99,111,110,102,105,103,46,119,114,97,112,41,114,101,116,117,114,110,32,101,59,118,97,114,32,115,61,40,111,43,40,116,61,61,61,87,63,45,49,58,49,41,41,37,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,45,49,61,61,61,115,63,116,104,105,115,46,95,105,116,101,109,115,91,116,104,105,115,46,95,105,116,101,109,115,46,108,101,110,103,116,104,45,49,93,58,116,104,105,115,46,95,105,116,101,109,115,91,115,93,125,44,116,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,44,105,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,41,44,111,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,44,100,105,114,101,99,116,105,111,110,58,101,44,102,114,111,109,58,105,44,116,111,58,110,125,41,59,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,111,41,44,111,125,44,116,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,41,123,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,74,41,41,59,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,59,118,97,114,32,110,61,116,104,105,115,46,95,105,110,100,105,99,97,116,111,114,115,69,108,101,109,101,110,116,46,99,104,105,108,100,114,101,110,91,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,116,41,93,59,110,38,38,112,40,110,41,46,97,100,100,67,108,97,115,115,40,81,41,125,125,44,116,46,95,115,108,105,100,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,44,105,44,111,44,114,61,116,104,105,115,44,115,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,90,41,44,97,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,115,41,44,108,61,101,124,124,115,38,38,116,104,105,115,46,95,103,101,116,73,116,101,109,66,121,68,105,114,101,99,116,105,111,110,40,116,44,115,41,44,99,61,116,104,105,115,46,95,103,101,116,73,116,101,109,73,110,100,101,120,40,108,41,44,104,61,66,111,111,108,101,97,110,40,116,104,105,115,46,95,105,110,116,101,114,118,97,108,41,59,105,102,40,111,61,116,61,61,61,77,63,40,110,61,122,44,105,61,88,44,85,41,58,40,110,61,89,44,105,61,71,44,66,41,44,108,38,38,112,40,108,41,46,104,97,115,67,108,97,115,115,40,81,41,41,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,59,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,116,114,105,103,103,101,114,83,108,105,100,101,69,118,101,110,116,40,108,44,111,41,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,115,38,38,108,41,123,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,48,44,104,38,38,116,104,105,115,46,112,97,117,115,101,40,41,44,116,104,105,115,46,95,115,101,116,65,99,116,105,118,101,73,110,100,105,99,97,116,111,114,69,108,101,109,101,110,116,40,108,41,59,118,97,114,32,117,61,112,46,69,118,101,110,116,40,113,46,83,76,73,68,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,108,44,100,105,114,101,99,116,105,111,110,58,111,44,102,114,111,109,58,97,44,116,111,58,99,125,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,86,41,41,123,112,40,108,41,46,97,100,100,67,108,97,115,115,40,105,41,44,109,46,114,101,102,108,111,119,40,108,41,44,112,40,115,41,46,97,100,100,67,108,97,115,115,40,110,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,110,41,59,118,97,114,32,102,61,112,97,114,115,101,73,110,116,40,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,105,110,116,101,114,118,97,108,34,41,44,49,48,41,59,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,61,102,63,40,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,44,102,41,58,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,102,97,117,108,116,73,110,116,101,114,118,97,108,124,124,116,104,105,115,46,95,99,111,110,102,105,103,46,105,110,116,101,114,118,97,108,59,118,97,114,32,100,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,115,41,59,112,40,115,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,108,41,46,114,101,109,111,118,101,67,108,97,115,115,40,110,43,34,32,34,43,105,41,46,97,100,100,67,108,97,115,115,40,81,41,44,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,43,34,32,34,43,105,43,34,32,34,43,110,41,44,114,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,114,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,125,44,48,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,100,41,125,101,108,115,101,32,112,40,115,41,46,114,101,109,111,118,101,67,108,97,115,115,40,81,41,44,112,40,108,41,46,97,100,100,67,108,97,115,115,40,81,41,44,116,104,105,115,46,95,105,115,83,108,105,100,105,110,103,61,33,49,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,117,41,59,104,38,38,116,104,105,115,46,99,121,99,108,101,40,41,125,125,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,120,41,44,101,61,108,40,123,125,44,82,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,40,101,61,108,40,123,125,44,101,44,105,41,41,59,118,97,114,32,110,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,63,105,58,101,46,115,108,105,100,101,59,105,102,40,116,124,124,40,116,61,110,101,119,32,114,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,120,44,116,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,105,41,116,46,116,111,40,105,41,59,101,108,115,101,32,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,101,108,115,101,32,101,46,105,110,116,101,114,118,97,108,38,38,101,46,114,105,100,101,38,38,40,116,46,112,97,117,115,101,40,41,44,116,46,99,121,99,108,101,40,41,41,125,41,125,44,114,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,102,40,101,41,123,118,97,114,32,110,61,112,40,101,41,91,48,93,59,105,102,40,110,38,38,112,40,110,41,46,104,97,115,67,108,97,115,115,40,75,41,41,123,118,97,114,32,105,61,108,40,123,125,44,112,40,110,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,44,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,115,108,105,100,101,45,116,111,34,41,59,111,38,38,40,105,46,105,110,116,101,114,118,97,108,61,33,49,41,44,114,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,110,41,44,105,41,44,111,38,38,112,40,110,41,46,100,97,116,97,40,120,41,46,116,111,40,111,41,44,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,125,44,115,40,114,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,82,125,125,93,41,44,114,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,113,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,111,116,44,97,116,46,95,100,97,116,97,65,112,105,67,108,105,99,107,72,97,110,100,108,101,114,41,44,112,40,119,105,110,100,111,119,41,46,111,110,40,113,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,114,116,41,41,44,101,61,48,44,110,61,116,46,108,101,110,103,116,104,59,101,60,110,59,101,43,43,41,123,118,97,114,32,105,61,112,40,116,91,101,93,41,59,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,105,44,105,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,76,93,61,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,76,93,46,67,111,110,115,116,114,117,99,116,111,114,61,97,116,44,112,46,102,110,91,76,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,76,93,61,106,44,97,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,108,116,61,34,99,111,108,108,97,112,115,101,34,44,99,116,61,34,98,115,46,99,111,108,108,97,112,115,101,34,44,104,116,61,34,46,34,43,99,116,44,117,116,61,112,46,102,110,91,108,116,93,44,102,116,61,123,116,111,103,103,108,101,58,33,48,44,112,97,114,101,110,116,58,34,34,125,44,100,116,61,123,116,111,103,103,108,101,58,34,98,111,111,108,101,97,110,34,44,112,97,114,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,112,116,61,123,83,72,79,87,58,34,115,104,111,119,34,43,104,116,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,104,116,44,72,73,68,69,58,34,104,105,100,101,34,43,104,116,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,104,116,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,104,116,43,34,46,100,97,116,97,45,97,112,105,34,125,44,109,116,61,34,115,104,111,119,34,44,103,116,61,34,99,111,108,108,97,112,115,101,34,44,95,116,61,34,99,111,108,108,97,112,115,105,110,103,34,44,118,116,61,34,99,111,108,108,97,112,115,101,100,34,44,121,116,61,34,119,105,100,116,104,34,44,69,116,61,34,104,101,105,103,104,116,34,44,98,116,61,34,46,115,104,111,119,44,32,46,99,111,108,108,97,112,115,105,110,103,34,44,119,116,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,39,44,67,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,101,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,116,41,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,104,114,101,102,61,34,35,39,43,101,46,105,100,43,39,34,93,44,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,116,97,114,103,101,116,61,34,35,39,43,101,46,105,100,43,39,34,93,39,41,41,59,102,111,114,40,118,97,114,32,110,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,119,116,41,41,44,105,61,48,44,111,61,110,46,108,101,110,103,116,104,59,105,60,111,59,105,43,43,41,123,118,97,114,32,114,61,110,91,105,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,44,97,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,61,61,101,125,41,59,110,117,108,108,33,61,61,115,38,38,48,60,97,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,115,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,112,117,115,104,40,114,41,41,125,116,104,105,115,46,95,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,104,105,115,46,95,103,101,116,80,97,114,101,110,116,40,41,58,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,124,124,116,104,105,115,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,116,111,103,103,108,101,38,38,116,104,105,115,46,116,111,103,103,108,101,40,41,125,118,97,114,32,116,61,97,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,101,44,110,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,38,38,40,116,104,105,115,46,95,112,97,114,101,110,116,38,38,48,61,61,61,40,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,104,105,115,46,95,112,97,114,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,98,116,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,63,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,112,97,114,101,110,116,34,41,61,61,61,110,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,58,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,103,116,41,125,41,41,46,108,101,110,103,116,104,38,38,40,116,61,110,117,108,108,41,44,33,40,116,38,38,40,101,61,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,46,100,97,116,97,40,99,116,41,41,38,38,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,41,41,123,118,97,114,32,105,61,112,46,69,118,101,110,116,40,112,116,46,83,72,79,87,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,38,38,40,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,41,46,110,111,116,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,44,34,104,105,100,101,34,41,44,101,124,124,112,40,116,41,46,100,97,116,97,40,99,116,44,110,117,108,108,41,41,59,118,97,114,32,111,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,48,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,38,38,112,40,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,118,97,114,32,114,61,34,115,99,114,111,108,108,34,43,40,111,91,48,93,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,111,46,115,108,105,99,101,40,49,41,41,44,115,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,97,100,100,67,108,97,115,115,40,109,116,41,44,110,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,34,34,44,110,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,112,116,46,83,72,79,87,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,115,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,111,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,91,114,93,43,34,112,120,34,125,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,41,123,118,97,114,32,101,61,112,46,69,118,101,110,116,40,112,116,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,44,33,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,118,97,114,32,110,61,116,104,105,115,46,95,103,101,116,68,105,109,101,110,115,105,111,110,40,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,91,110,93,43,34,112,120,34,44,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,95,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,103,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,109,116,41,59,118,97,114,32,105,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,46,108,101,110,103,116,104,59,105,102,40,48,60,105,41,102,111,114,40,118,97,114,32,111,61,48,59,111,60,105,59,111,43,43,41,123,118,97,114,32,114,61,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,91,111,93,44,115,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,114,41,59,105,102,40,110,117,108,108,33,61,61,115,41,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,115,41,41,41,46,104,97,115,67,108,97,115,115,40,109,116,41,124,124,112,40,114,41,46,97,100,100,67,108,97,115,115,40,118,116,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,49,41,125,116,104,105,115,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,48,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,91,110,93,61,34,34,59,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,41,123,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,40,33,49,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,95,116,41,46,97,100,100,67,108,97,115,115,40,103,116,41,46,116,114,105,103,103,101,114,40,112,116,46,72,73,68,68,69,78,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,125,125,44,116,46,115,101,116,84,114,97,110,115,105,116,105,111,110,105,110,103,61,102,117,110,99,116,105,111,110,40,116,41,123,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,116,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,99,116,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,112,97,114,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,116,114,105,103,103,101,114,65,114,114,97,121,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,116,61,108,40,123,125,44,102,116,44,116,41,41,46,116,111,103,103,108,101,61,66,111,111,108,101,97,110,40,116,46,116,111,103,103,108,101,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,108,116,44,116,44,100,116,41,44,116,125,44,116,46,95,103,101,116,68,105,109,101,110,115,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,121,116,41,63,121,116,58,69,116,125,44,116,46,95,103,101,116,80,97,114,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,44,110,61,116,104,105,115,59,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,63,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,46,106,113,117,101,114,121,38,38,40,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,91,48,93,41,41,58,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,41,59,118,97,114,32,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,99,111,108,108,97,112,115,101,34,93,91,100,97,116,97,45,112,97,114,101,110,116,61,34,39,43,116,104,105,115,46,95,99,111,110,102,105,103,46,112,97,114,101,110,116,43,39,34,93,39,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,114,101,116,117,114,110,32,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,110,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,40,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,40,101,41,44,91,101,93,41,125,41,44,116,125,44,116,46,95,97,100,100,65,114,105,97,65,110,100,67,111,108,108,97,112,115,101,100,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,116,41,46,104,97,115,67,108,97,115,115,40,109,116,41,59,101,46,108,101,110,103,116,104,38,38,112,40,101,41,46,116,111,103,103,108,101,67,108,97,115,115,40,118,116,44,33,110,41,46,97,116,116,114,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,110,41,125,44,97,46,95,103,101,116,84,97,114,103,101,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,101,63,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,58,110,117,108,108,125,44,97,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,44,110,61,108,40,123,125,44,102,116,44,116,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,105,38,38,105,63,105,58,123,125,41,59,105,102,40,33,101,38,38,110,46,116,111,103,103,108,101,38,38,47,115,104,111,119,124,104,105,100,101,47,46,116,101,115,116,40,105,41,38,38,40,110,46,116,111,103,103,108,101,61,33,49,41,44,101,124,124,40,101,61,110,101,119,32,97,40,116,104,105,115,44,110,41,44,116,46,100,97,116,97,40,99,116,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,105,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,105,43,39,34,39,41,59,101,91,105,93,40,41,125,125,41,125,44,115,40,97,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,116,125,125,93,41,44,97,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,112,116,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,119,116,44,102,117,110,99,116,105,111,110,40,116,41,123,34,65,34,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,46,116,97,103,78,97,109,101,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,110,61,112,40,116,104,105,115,41,44,101,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,101,41,41,59,112,40,105,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,99,116,41,63,34,116,111,103,103,108,101,34,58,110,46,100,97,116,97,40,41,59,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,116,44,101,41,125,41,125,41,44,112,46,102,110,91,108,116,93,61,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,108,116,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,116,44,112,46,102,110,91,108,116,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,108,116,93,61,117,116,44,67,116,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,102,111,114,40,118,97,114,32,84,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,44,83,116,61,91,34,69,100,103,101,34,44,34,84,114,105,100,101,110,116,34,44,34,70,105,114,101,102,111,120,34,93,44,68,116,61,48,44,73,116,61,48,59,73,116,60,83,116,46,108,101,110,103,116,104,59,73,116,43,61,49,41,105,102,40,84,116,38,38,48,60,61,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,46,105,110,100,101,120,79,102,40,83,116,91,73,116,93,41,41,123,68,116,61,49,59,98,114,101,97,107,125,118,97,114,32,65,116,61,84,116,38,38,119,105,110,100,111,119,46,80,114,111,109,105,115,101,63,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,119,105,110,100,111,119,46,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,41,41,125,125,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,101,124,124,40,101,61,33,48,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,61,33,49,44,116,40,41,125,44,68,116,41,41,125,125,59,102,117,110,99,116,105,111,110,32,79,116,40,116,41,123,114,101,116,117,114,110,32,116,38,38,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,41,125,102,117,110,99,116,105,111,110,32,78,116,40,116,44,101,41,123,105,102,40,49,33,61,61,116,46,110,111,100,101,84,121,112,101,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,44,110,117,108,108,41,59,114,101,116,117,114,110,32,101,63,110,91,101,93,58,110,125,102,117,110,99,116,105,111,110,32,107,116,40,116,41,123,114,101,116,117,114,110,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,116,58,116,46,112,97,114,101,110,116,78,111,100,101,124,124,116,46,104,111,115,116,125,102,117,110,99,116,105,111,110,32,76,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,59,115,119,105,116,99,104,40,116,46,110,111,100,101,78,97,109,101,41,123,99,97,115,101,34,72,84,77,76,34,58,99,97,115,101,34,66,79,68,89,34,58,114,101,116,117,114,110,32,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,98,111,100,121,59,99,97,115,101,34,35,100,111,99,117,109,101,110,116,34,58,114,101,116,117,114,110,32,116,46,98,111,100,121,125,118,97,114,32,101,61,78,116,40,116,41,44,110,61,101,46,111,118,101,114,102,108,111,119,44,105,61,101,46,111,118,101,114,102,108,111,119,88,44,111,61,101,46,111,118,101,114,102,108,111,119,89,59,114,101,116,117,114,110,47,40,97,117,116,111,124,115,99,114,111,108,108,124,111,118,101,114,108,97,121,41,47,46,116,101,115,116,40,110,43,111,43,105,41,63,116,58,76,116,40,107,116,40,116,41,41,125,118,97,114,32,120,116,61,84,116,38,38,33,40,33,119,105,110,100,111,119,46,77,83,73,110,112,117,116,77,101,116,104,111,100,67,111,110,116,101,120,116,124,124,33,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,77,111,100,101,41,44,80,116,61,84,116,38,38,47,77,83,73,69,32,49,48,47,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,72,116,40,116,41,123,114,101,116,117,114,110,32,49,49,61,61,61,116,63,120,116,58,49,48,61,61,61,116,63,80,116,58,120,116,124,124,80,116,125,102,117,110,99,116,105,111,110,32,106,116,40,116,41,123,105,102,40,33,116,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,72,116,40,49,48,41,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,110,117,108,108,44,110,61,116,46,111,102,102,115,101,116,80,97,114,101,110,116,124,124,110,117,108,108,59,110,61,61,61,101,38,38,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,59,41,110,61,40,116,61,116,46,110,101,120,116,69,108,101,109,101,110,116,83,105,98,108,105,110,103,41,46,111,102,102,115,101,116,80,97,114,101,110,116,59,118,97,114,32,105,61,110,38,38,110,46,110,111,100,101,78,97,109,101,59,114,101,116,117,114,110,32,105,38,38,34,66,79,68,89,34,33,61,61,105,38,38,34,72,84,77,76,34,33,61,61,105,63,45,49,33,61,61,91,34,84,72,34,44,34,84,68,34,44,34,84,65,66,76,69,34,93,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,41,38,38,34,115,116,97,116,105,99,34,61,61,61,78,116,40,110,44,34,112,111,115,105,116,105,111,110,34,41,63,106,116,40,110,41,58,110,58,116,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,82,116,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,61,116,46,112,97,114,101,110,116,78,111,100,101,63,82,116,40,116,46,112,97,114,101,110,116,78,111,100,101,41,58,116,125,102,117,110,99,116,105,111,110,32,70,116,40,116,44,101,41,123,105,102,40,33,40,116,38,38,116,46,110,111,100,101,84,121,112,101,38,38,101,38,38,101,46,110,111,100,101,84,121,112,101,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,118,97,114,32,110,61,116,46,99,111,109,112,97,114,101,68,111,99,117,109,101,110,116,80,111,115,105,116,105,111,110,40,101,41,38,78,111,100,101,46,68,79,67,85,77,69,78,84,95,80,79,83,73,84,73,79,78,95,70,79,76,76,79,87,73,78,71,44,105,61,110,63,116,58,101,44,111,61,110,63,101,58,116,44,114,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,82,97,110,103,101,40,41,59,114,46,115,101,116,83,116,97,114,116,40,105,44,48,41,44,114,46,115,101,116,69,110,100,40,111,44,48,41,59,118,97,114,32,115,44,97,44,108,61,114,46,99,111,109,109,111,110,65,110,99,101,115,116,111,114,67,111,110,116,97,105,110,101,114,59,105,102,40,116,33,61,61,108,38,38,101,33,61,61,108,124,124,105,46,99,111,110,116,97,105,110,115,40,111,41,41,114,101,116,117,114,110,34,66,79,68,89,34,61,61,61,40,97,61,40,115,61,108,41,46,110,111,100,101,78,97,109,101,41,124,124,34,72,84,77,76,34,33,61,61,97,38,38,106,116,40,115,46,102,105,114,115,116,69,108,101,109,101,110,116,67,104,105,108,100,41,33,61,61,115,63,106,116,40,108,41,58,108,59,118,97,114,32,99,61,82,116,40,116,41,59,114,101,116,117,114,110,32,99,46,104,111,115,116,63,70,116,40,99,46,104,111,115,116,44,101,41,58,70,116,40,116,44,82,116,40,101,41,46,104,111,115,116,41,125,102,117,110,99,116,105,111,110,32,77,116,40,116,41,123,118,97,114,32,101,61,34,116,111,112,34,61,61,61,40,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,116,111,112,34,41,63,34,115,99,114,111,108,108,84,111,112,34,58,34,115,99,114,111,108,108,76,101,102,116,34,44,110,61,116,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,33,61,61,110,38,38,34,72,84,77,76,34,33,61,61,110,41,114,101,116,117,114,110,32,116,91,101,93,59,118,97,114,32,105,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,115,99,114,111,108,108,105,110,103,69,108,101,109,101,110,116,124,124,105,41,91,101,93,125,102,117,110,99,116,105,111,110,32,87,116,40,116,44,101,41,123,118,97,114,32,110,61,34,120,34,61,61,61,101,63,34,76,101,102,116,34,58,34,84,111,112,34,44,105,61,34,76,101,102,116,34,61,61,61,110,63,34,82,105,103,104,116,34,58,34,66,111,116,116,111,109,34,59,114,101,116,117,114,110,32,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,110,43,34,87,105,100,116,104,34,93,44,49,48,41,43,112,97,114,115,101,70,108,111,97,116,40,116,91,34,98,111,114,100,101,114,34,43,105,43,34,87,105,100,116,104,34,93,44,49,48,41,125,102,117,110,99,116,105,111,110,32,85,116,40,116,44,101,44,110,44,105,41,123,114,101,116,117,114,110,32,77,97,116,104,46,109,97,120,40,101,91,34,111,102,102,115,101,116,34,43,116,93,44,101,91,34,115,99,114,111,108,108,34,43,116,93,44,110,91,34,99,108,105,101,110,116,34,43,116,93,44,110,91,34,111,102,102,115,101,116,34,43,116,93,44,110,91,34,115,99,114,111,108,108,34,43,116,93,44,72,116,40,49,48,41,63,112,97,114,115,101,73,110,116,40,110,91,34,111,102,102,115,101,116,34,43,116,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,84,111,112,34,58,34,76,101,102,116,34,41,93,41,43,112,97,114,115,101,73,110,116,40,105,91,34,109,97,114,103,105,110,34,43,40,34,72,101,105,103,104,116,34,61,61,61,116,63,34,66,111,116,116,111,109,34,58,34,82,105,103,104,116,34,41,93,41,58,48,41,125,102,117,110,99,116,105,111,110,32,66,116,40,116,41,123,118,97,114,32,101,61,116,46,98,111,100,121,44,110,61,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,72,116,40,49,48,41,38,38,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,110,41,59,114,101,116,117,114,110,123,104,101,105,103,104,116,58,85,116,40,34,72,101,105,103,104,116,34,44,101,44,110,44,105,41,44,119,105,100,116,104,58,85,116,40,34,87,105,100,116,104,34,44,101,44,110,44,105,41,125,125,118,97,114,32,113,116,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,101,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,38,38,105,40,116,46,112,114,111,116,111,116,121,112,101,44,101,41,44,110,38,38,105,40,116,44,110,41,44,116,125,125,40,41,44,75,116,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,114,101,116,117,114,110,32,101,32,105,110,32,116,63,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,101,44,123,118,97,108,117,101,58,110,44,101,110,117,109,101,114,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,48,125,41,58,116,91,101,93,61,110,44,116,125,44,81,116,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,116,41,123,102,111,114,40,118,97,114,32,101,61,49,59,101,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,101,93,59,102,111,114,40,118,97,114,32,105,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,105,41,38,38,40,116,91,105,93,61,110,91,105,93,41,125,114,101,116,117,114,110,32,116,125,59,102,117,110,99,116,105,111,110,32,86,116,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,125,44,116,44,123,114,105,103,104,116,58,116,46,108,101,102,116,43,116,46,119,105,100,116,104,44,98,111,116,116,111,109,58,116,46,116,111,112,43,116,46,104,101,105,103,104,116,125,41,125,102,117,110,99,116,105,111,110,32,89,116,40,116,41,123,118,97,114,32,101,61,123,125,59,116,114,121,123,105,102,40,72,116,40,49,48,41,41,123,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,118,97,114,32,110,61,77,116,40,116,44,34,116,111,112,34,41,44,105,61,77,116,40,116,44,34,108,101,102,116,34,41,59,101,46,116,111,112,43,61,110,44,101,46,108,101,102,116,43,61,105,44,101,46,98,111,116,116,111,109,43,61,110,44,101,46,114,105,103,104,116,43,61,105,125,101,108,115,101,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,125,99,97,116,99,104,40,116,41,123,125,118,97,114,32,111,61,123,108,101,102,116,58,101,46,108,101,102,116,44,116,111,112,58,101,46,116,111,112,44,119,105,100,116,104,58,101,46,114,105,103,104,116,45,101,46,108,101,102,116,44,104,101,105,103,104,116,58,101,46,98,111,116,116,111,109,45,101,46,116,111,112,125,44,114,61,34,72,84,77,76,34,61,61,61,116,46,110,111,100,101,78,97,109,101,63,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,58,123,125,44,115,61,114,46,119,105,100,116,104,124,124,116,46,99,108,105,101,110,116,87,105,100,116,104,124,124,111,46,114,105,103,104,116,45,111,46,108,101,102,116,44,97,61,114,46,104,101,105,103,104,116,124,124,116,46,99,108,105,101,110,116,72,101,105,103,104,116,124,124,111,46,98,111,116,116,111,109,45,111,46,116,111,112,44,108,61,116,46,111,102,102,115,101,116,87,105,100,116,104,45,115,44,99,61,116,46,111,102,102,115,101,116,72,101,105,103,104,116,45,97,59,105,102,40,108,124,124,99,41,123,118,97,114,32,104,61,78,116,40,116,41,59,108,45,61,87,116,40,104,44,34,120,34,41,44,99,45,61,87,116,40,104,44,34,121,34,41,44,111,46,119,105,100,116,104,45,61,108,44,111,46,104,101,105,103,104,116,45,61,99,125,114,101,116,117,114,110,32,86,116,40,111,41,125,102,117,110,99,116,105,111,110,32,122,116,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,72,116,40,49,48,41,44,111,61,34,72,84,77,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,114,61,89,116,40,116,41,44,115,61,89,116,40,101,41,44,97,61,76,116,40,116,41,44,108,61,78,116,40,101,41,44,99,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,84,111,112,87,105,100,116,104,44,49,48,41,44,104,61,112,97,114,115,101,70,108,111,97,116,40,108,46,98,111,114,100,101,114,76,101,102,116,87,105,100,116,104,44,49,48,41,59,110,38,38,111,38,38,40,115,46,116,111,112,61,77,97,116,104,46,109,97,120,40,115,46,116,111,112,44,48,41,44,115,46,108,101,102,116,61,77,97,116,104,46,109,97,120,40,115,46,108,101,102,116,44,48,41,41,59,118,97,114,32,117,61,86,116,40,123,116,111,112,58,114,46,116,111,112,45,115,46,116,111,112,45,99,44,108,101,102,116,58,114,46,108,101,102,116,45,115,46,108,101,102,116,45,104,44,119,105,100,116,104,58,114,46,119,105,100,116,104,44,104,101,105,103,104,116,58,114,46,104,101,105,103,104,116,125,41,59,105,102,40,117,46,109,97,114,103,105,110,84,111,112,61,48,44,117,46,109,97,114,103,105,110,76,101,102,116,61,48,44,33,105,38,38,111,41,123,118,97,114,32,102,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,84,111,112,44,49,48,41,44,100,61,112,97,114,115,101,70,108,111,97,116,40,108,46,109,97,114,103,105,110,76,101,102,116,44,49,48,41,59,117,46,116,111,112,45,61,99,45,102,44,117,46,98,111,116,116,111,109,45,61,99,45,102,44,117,46,108,101,102,116,45,61,104,45,100,44,117,46,114,105,103,104,116,45,61,104,45,100,44,117,46,109,97,114,103,105,110,84,111,112,61,102,44,117,46,109,97,114,103,105,110,76,101,102,116,61,100,125,114,101,116,117,114,110,40,105,38,38,33,110,63,101,46,99,111,110,116,97,105,110,115,40,97,41,58,101,61,61,61,97,38,38,34,66,79,68,89,34,33,61,61,97,46,110,111,100,101,78,97,109,101,41,38,38,40,117,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,38,38,97,114,103,117,109,101,110,116,115,91,50,93,44,105,61,77,116,40,101,44,34,116,111,112,34,41,44,111,61,77,116,40,101,44,34,108,101,102,116,34,41,44,114,61,110,63,45,49,58,49,59,114,101,116,117,114,110,32,116,46,116,111,112,43,61,105,42,114,44,116,46,98,111,116,116,111,109,43,61,105,42,114,44,116,46,108,101,102,116,43,61,111,42,114,44,116,46,114,105,103,104,116,43,61,111,42,114,44,116,125,40,117,44,101,41,41,44,117,125,102,117,110,99,116,105,111,110,32,88,116,40,116,41,123,105,102,40,33,116,124,124,33,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,124,124,72,116,40,41,41,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,59,102,111,114,40,118,97,114,32,101,61,116,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,101,38,38,34,110,111,110,101,34,61,61,61,78,116,40,101,44,34,116,114,97,110,115,102,111,114,109,34,41,59,41,101,61,101,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,114,101,116,117,114,110,32,101,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,125,102,117,110,99,116,105,111,110,32,71,116,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,52,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,52,93,38,38,97,114,103,117,109,101,110,116,115,91,52,93,44,114,61,123,116,111,112,58,48,44,108,101,102,116,58,48,125,44,115,61,111,63,88,116,40,116,41,58,70,116,40,116,44,101,41,59,105,102,40,34,118,105,101,119,112,111,114,116,34,61,61,61,105,41,114,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,105,61,122,116,40,116,44,110,41,44,111,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,44,114,61,77,97,116,104,46,109,97,120,40,110,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,44,115,61,101,63,48,58,77,116,40,110,41,44,97,61,101,63,48,58,77,116,40,110,44,34,108,101,102,116,34,41,59,114,101,116,117,114,110,32,86,116,40,123,116,111,112,58,115,45,105,46,116,111,112,43,105,46,109,97,114,103,105,110,84,111,112,44,108,101,102,116,58,97,45,105,46,108,101,102,116,43,105,46,109,97,114,103,105,110,76,101,102,116,44,119,105,100,116,104,58,111,44,104,101,105,103,104,116,58,114,125,41,125,40,115,44,111,41,59,101,108,115,101,123,118,97,114,32,97,61,118,111,105,100,32,48,59,34,115,99,114,111,108,108,80,97,114,101,110,116,34,61,61,61,105,63,34,66,79,68,89,34,61,61,61,40,97,61,76,116,40,107,116,40,101,41,41,41,46,110,111,100,101,78,97,109,101,38,38,40,97,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,41,58,97,61,34,119,105,110,100,111,119,34,61,61,61,105,63,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,58,105,59,118,97,114,32,108,61,122,116,40,97,44,115,44,111,41,59,105,102,40,34,72,84,77,76,34,33,61,61,97,46,110,111,100,101,78,97,109,101,124,124,102,117,110,99,116,105,111,110,32,116,40,101,41,123,118,97,114,32,110,61,101,46,110,111,100,101,78,97,109,101,59,105,102,40,34,66,79,68,89,34,61,61,61,110,124,124,34,72,84,77,76,34,61,61,61,110,41,114,101,116,117,114,110,33,49,59,105,102,40,34,102,105,120,101,100,34,61,61,61,78,116,40,101,44,34,112,111,115,105,116,105,111,110,34,41,41,114,101,116,117,114,110,33,48,59,118,97,114,32,105,61,107,116,40,101,41,59,114,101,116,117,114,110,33,33,105,38,38,116,40,105,41,125,40,115,41,41,114,61,108,59,101,108,115,101,123,118,97,114,32,99,61,66,116,40,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,41,44,104,61,99,46,104,101,105,103,104,116,44,117,61,99,46,119,105,100,116,104,59,114,46,116,111,112,43,61,108,46,116,111,112,45,108,46,109,97,114,103,105,110,84,111,112,44,114,46,98,111,116,116,111,109,61,104,43,108,46,116,111,112,44,114,46,108,101,102,116,43,61,108,46,108,101,102,116,45,108,46,109,97,114,103,105,110,76,101,102,116,44,114,46,114,105,103,104,116,61,117,43,108,46,108,101,102,116,125,125,118,97,114,32,102,61,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,110,61,110,124,124,48,41,59,114,101,116,117,114,110,32,114,46,108,101,102,116,43,61,102,63,110,58,110,46,108,101,102,116,124,124,48,44,114,46,116,111,112,43,61,102,63,110,58,110,46,116,111,112,124,124,48,44,114,46,114,105,103,104,116,45,61,102,63,110,58,110,46,114,105,103,104,116,124,124,48,44,114,46,98,111,116,116,111,109,45,61,102,63,110,58,110,46,98,111,116,116,111,109,124,124,48,44,114,125,102,117,110,99,116,105,111,110,32,36,116,40,116,44,101,44,105,44,110,44,111,41,123,118,97,114,32,114,61,53,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,53,93,63,97,114,103,117,109,101,110,116,115,91,53,93,58,48,59,105,102,40,45,49,61,61,61,116,46,105,110,100,101,120,79,102,40,34,97,117,116,111,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,115,61,71,116,40,105,44,110,44,114,44,111,41,44,97,61,123,116,111,112,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,101,46,116,111,112,45,115,46,116,111,112,125,44,114,105,103,104,116,58,123,119,105,100,116,104,58,115,46,114,105,103,104,116,45,101,46,114,105,103,104,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,44,98,111,116,116,111,109,58,123,119,105,100,116,104,58,115,46,119,105,100,116,104,44,104,101,105,103,104,116,58,115,46,98,111,116,116,111,109,45,101,46,98,111,116,116,111,109,125,44,108,101,102,116,58,123,119,105,100,116,104,58,101,46,108,101,102,116,45,115,46,108,101,102,116,44,104,101,105,103,104,116,58,115,46,104,101,105,103,104,116,125,125,44,108,61,79,98,106,101,99,116,46,107,101,121,115,40,97,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,107,101,121,58,116,125,44,97,91,116,93,44,123,97,114,101,97,58,40,101,61,97,91,116,93,44,101,46,119,105,100,116,104,42,101,46,104,101,105,103,104,116,41,125,41,59,118,97,114,32,101,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,101,46,97,114,101,97,45,116,46,97,114,101,97,125,41,44,99,61,108,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,119,105,100,116,104,44,110,61,116,46,104,101,105,103,104,116,59,114,101,116,117,114,110,32,101,62,61,105,46,99,108,105,101,110,116,87,105,100,116,104,38,38,110,62,61,105,46,99,108,105,101,110,116,72,101,105,103,104,116,125,41,44,104,61,48,60,99,46,108,101,110,103,116,104,63,99,91,48,93,46,107,101,121,58,108,91,48,93,46,107,101,121,44,117,61,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,114,101,116,117,114,110,32,104,43,40,117,63,34,45,34,43,117,58,34,34,41,125,102,117,110,99,116,105,111,110,32,74,116,40,116,44,101,44,110,41,123,118,97,114,32,105,61,51,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,51,93,63,97,114,103,117,109,101,110,116,115,91,51,93,58,110,117,108,108,59,114,101,116,117,114,110,32,122,116,40,110,44,105,63,88,116,40,101,41,58,70,116,40,101,44,110,41,44,105,41,125,102,117,110,99,116,105,111,110,32,90,116,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,116,41,44,110,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,84,111,112,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,66,111,116,116,111,109,124,124,48,41,44,105,61,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,76,101,102,116,124,124,48,41,43,112,97,114,115,101,70,108,111,97,116,40,101,46,109,97,114,103,105,110,82,105,103,104,116,124,124,48,41,59,114,101,116,117,114,110,123,119,105,100,116,104,58,116,46,111,102,102,115,101,116,87,105,100,116,104,43,105,44,104,101,105,103,104,116,58,116,46,111,102,102,115,101,116,72,101,105,103,104,116,43,110,125,125,102,117,110,99,116,105,111,110,32,116,101,40,116,41,123,118,97,114,32,101,61,123,108,101,102,116,58,34,114,105,103,104,116,34,44,114,105,103,104,116,58,34,108,101,102,116,34,44,98,111,116,116,111,109,58,34,116,111,112,34,44,116,111,112,58,34,98,111,116,116,111,109,34,125,59,114,101,116,117,114,110,32,116,46,114,101,112,108,97,99,101,40,47,108,101,102,116,124,114,105,103,104,116,124,98,111,116,116,111,109,124,116,111,112,47,103,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,101,101,40,116,44,101,44,110,41,123,110,61,110,46,115,112,108,105,116,40,34,45,34,41,91,48,93,59,118,97,114,32,105,61,90,116,40,116,41,44,111,61,123,119,105,100,116,104,58,105,46,119,105,100,116,104,44,104,101,105,103,104,116,58,105,46,104,101,105,103,104,116,125,44,114,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,115,61,114,63,34,116,111,112,34,58,34,108,101,102,116,34,44,97,61,114,63,34,108,101,102,116,34,58,34,116,111,112,34,44,108,61,114,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,99,61,114,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,111,91,115,93,61,101,91,115,93,43,101,91,108,93,47,50,45,105,91,108,93,47,50,44,111,91,97,93,61,110,61,61,61,97,63,101,91,97,93,45,105,91,99,93,58,101,91,116,101,40,97,41,93,44,111,125,102,117,110,99,116,105,111,110,32,110,101,40,116,44,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,63,116,46,102,105,110,100,40,101,41,58,116,46,102,105,108,116,101,114,40,101,41,91,48,93,125,102,117,110,99,116,105,111,110,32,105,101,40,116,44,110,44,101,41,123,114,101,116,117,114,110,40,118,111,105,100,32,48,61,61,61,101,63,116,58,116,46,115,108,105,99,101,40,48,44,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,73,110,100,101,120,41,114,101,116,117,114,110,32,116,46,102,105,110,100,73,110,100,101,120,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,91,101,93,61,61,61,110,125,41,59,114,101,116,117,114,110,32,116,46,105,110,100,101,120,79,102,40,105,41,125,40,116,44,34,110,97,109,101,34,44,101,41,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,102,117,110,99,116,105,111,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,96,109,111,100,105,102,105,101,114,46,102,117,110,99,116,105,111,110,96,32,105,115,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,96,109,111,100,105,102,105,101,114,46,102,110,96,33,34,41,59,118,97,114,32,101,61,116,46,102,117,110,99,116,105,111,110,124,124,116,46,102,110,59,116,46,101,110,97,98,108,101,100,38,38,79,116,40,101,41,38,38,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,110,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,44,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,86,116,40,110,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,41,44,110,61,101,40,110,44,116,41,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,111,101,40,116,44,110,41,123,114,101,116,117,114,110,32,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,110,97,109,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,100,38,38,101,61,61,61,110,125,41,125,102,117,110,99,116,105,111,110,32,114,101,40,116,41,123,102,111,114,40,118,97,114,32,101,61,91,33,49,44,34,109,115,34,44,34,87,101,98,107,105,116,34,44,34,77,111,122,34,44,34,79,34,93,44,110,61,116,46,99,104,97,114,65,116,40,48,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,43,116,46,115,108,105,99,101,40,49,41,44,105,61,48,59,105,60,101,46,108,101,110,103,116,104,59,105,43,43,41,123,118,97,114,32,111,61,101,91,105,93,44,114,61,111,63,34,34,43,111,43,110,58,116,59,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,91,114,93,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,110,117,108,108,125,102,117,110,99,116,105,111,110,32,115,101,40,116,41,123,118,97,114,32,101,61,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,59,114,101,116,117,114,110,32,101,63,101,46,100,101,102,97,117,108,116,86,105,101,119,58,119,105,110,100,111,119,125,102,117,110,99,116,105,111,110,32,97,101,40,116,44,101,44,110,44,105,41,123,110,46,117,112,100,97,116,101,66,111,117,110,100,61,105,44,115,101,40,116,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,123,112,97,115,115,105,118,101,58,33,48,125,41,59,118,97,114,32,111,61,76,116,40,116,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,116,40,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,34,66,79,68,89,34,61,61,61,101,46,110,111,100,101,78,97,109,101,44,115,61,114,63,101,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,101,102,97,117,108,116,86,105,101,119,58,101,59,115,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,110,44,105,44,123,112,97,115,115,105,118,101,58,33,48,125,41,44,114,124,124,116,40,76,116,40,115,46,112,97,114,101,110,116,78,111,100,101,41,44,110,44,105,44,111,41,44,111,46,112,117,115,104,40,115,41,125,40,111,44,34,115,99,114,111,108,108,34,44,110,46,117,112,100,97,116,101,66,111,117,110,100,44,110,46,115,99,114,111,108,108,80,97,114,101,110,116,115,41,44,110,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,111,44,110,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,48,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,41,123,118,97,114,32,116,44,101,59,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,38,38,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,44,116,104,105,115,46,115,116,97,116,101,61,40,116,61,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,101,61,116,104,105,115,46,115,116,97,116,101,44,115,101,40,116,41,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,114,101,115,105,122,101,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,101,46,117,112,100,97,116,101,66,111,117,110,100,41,125,41,44,101,46,117,112,100,97,116,101,66,111,117,110,100,61,110,117,108,108,44,101,46,115,99,114,111,108,108,80,97,114,101,110,116,115,61,91,93,44,101,46,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,33,49,44,101,41,41,125,102,117,110,99,116,105,111,110,32,99,101,40,116,41,123,114,101,116,117,114,110,34,34,33,61,61,116,38,38,33,105,115,78,97,78,40,112,97,114,115,101,70,108,111,97,116,40,116,41,41,38,38,105,115,70,105,110,105,116,101,40,116,41,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,105,41,123,79,98,106,101,99,116,46,107,101,121,115,40,105,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,34,59,45,49,33,61,61,91,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,44,34,116,111,112,34,44,34,114,105,103,104,116,34,44,34,98,111,116,116,111,109,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,116,41,38,38,99,101,40,105,91,116,93,41,38,38,40,101,61,34,112,120,34,41,44,110,46,115,116,121,108,101,91,116,93,61,105,91,116,93,43,101,125,41,125,118,97,114,32,117,101,61,84,116,38,38,47,70,105,114,101,102,111,120,47,105,46,116,101,115,116,40,110,97,118,105,103,97,116,111,114,46,117,115,101,114,65,103,101,110,116,41,59,102,117,110,99,116,105,111,110,32,102,101,40,116,44,101,44,110,41,123,118,97,114,32,105,61,110,101,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,101,125,41,44,111,61,33,33,105,38,38,116,46,115,111,109,101,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,110,97,109,101,61,61,61,110,38,38,116,46,101,110,97,98,108,101,100,38,38,116,46,111,114,100,101,114,60,105,46,111,114,100,101,114,125,41,59,105,102,40,33,111,41,123,118,97,114,32,114,61,34,96,34,43,101,43,34,96,34,44,115,61,34,96,34,43,110,43,34,96,34,59,99,111,110,115,111,108,101,46,119,97,114,110,40,115,43,34,32,109,111,100,105,102,105,101,114,32,105,115,32,114,101,113,117,105,114,101,100,32,98,121,32,34,43,114,43,34,32,109,111,100,105,102,105,101,114,32,105,110,32,111,114,100,101,114,32,116,111,32,119,111,114,107,44,32,98,101,32,115,117,114,101,32,116,111,32,105,110,99,108,117,100,101,32,105,116,32,98,101,102,111,114,101,32,34,43,114,43,34,33,34,41,125,114,101,116,117,114,110,32,111,125,118,97,114,32,100,101,61,91,34,97,117,116,111,45,115,116,97,114,116,34,44,34,97,117,116,111,34,44,34,97,117,116,111,45,101,110,100,34,44,34,116,111,112,45,115,116,97,114,116,34,44,34,116,111,112,34,44,34,116,111,112,45,101,110,100,34,44,34,114,105,103,104,116,45,115,116,97,114,116,34,44,34,114,105,103,104,116,34,44,34,114,105,103,104,116,45,101,110,100,34,44,34,98,111,116,116,111,109,45,101,110,100,34,44,34,98,111,116,116,111,109,34,44,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,34,108,101,102,116,45,101,110,100,34,44,34,108,101,102,116,34,44,34,108,101,102,116,45,115,116,97,114,116,34,93,44,112,101,61,100,101,46,115,108,105,99,101,40,51,41,59,102,117,110,99,116,105,111,110,32,109,101,40,116,41,123,118,97,114,32,101,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,110,61,112,101,46,105,110,100,101,120,79,102,40,116,41,44,105,61,112,101,46,115,108,105,99,101,40,110,43,49,41,46,99,111,110,99,97,116,40,112,101,46,115,108,105,99,101,40,48,44,110,41,41,59,114,101,116,117,114,110,32,101,63,105,46,114,101,118,101,114,115,101,40,41,58,105,125,118,97,114,32,103,101,61,34,102,108,105,112,34,44,95,101,61,34,99,108,111,99,107,119,105,115,101,34,44,118,101,61,34,99,111,117,110,116,101,114,99,108,111,99,107,119,105,115,101,34,59,102,117,110,99,116,105,111,110,32,121,101,40,116,44,111,44,114,44,101,41,123,118,97,114,32,115,61,91,48,44,48,93,44,97,61,45,49,33,61,61,91,34,114,105,103,104,116,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,101,41,44,110,61,116,46,115,112,108,105,116,40,47,40,92,43,124,92,45,41,47,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,116,114,105,109,40,41,125,41,44,105,61,110,46,105,110,100,101,120,79,102,40,110,101,40,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,45,49,33,61,61,116,46,115,101,97,114,99,104,40,47,44,124,92,115,47,41,125,41,41,59,110,91,105,93,38,38,45,49,61,61,61,110,91,105,93,46,105,110,100,101,120,79,102,40,34,44,34,41,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,79,102,102,115,101,116,115,32,115,101,112,97,114,97,116,101,100,32,98,121,32,119,104,105,116,101,32,115,112,97,99,101,40,115,41,32,97,114,101,32,100,101,112,114,101,99,97,116,101,100,44,32,117,115,101,32,97,32,99,111,109,109,97,32,40,44,41,32,105,110,115,116,101,97,100,46,34,41,59,118,97,114,32,108,61,47,92,115,42,44,92,115,42,124,92,115,43,47,44,99,61,45,49,33,61,61,105,63,91,110,46,115,108,105,99,101,40,48,44,105,41,46,99,111,110,99,97,116,40,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,48,93,93,41,44,91,110,91,105,93,46,115,112,108,105,116,40,108,41,91,49,93,93,46,99,111,110,99,97,116,40,110,46,115,108,105,99,101,40,105,43,49,41,41,93,58,91,110,93,59,114,101,116,117,114,110,40,99,61,99,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,40,49,61,61,61,101,63,33,97,58,97,41,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,105,61,33,49,59,114,101,116,117,114,110,32,116,46,114,101,100,117,99,101,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,34,34,61,61,61,116,91,116,46,108,101,110,103,116,104,45,49,93,38,38,45,49,33,61,61,91,34,43,34,44,34,45,34,93,46,105,110,100,101,120,79,102,40,101,41,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,61,101,44,105,61,33,48,44,116,41,58,105,63,40,116,91,116,46,108,101,110,103,116,104,45,49,93,43,61,101,44,105,61,33,49,44,116,41,58,116,46,99,111,110,99,97,116,40,101,41,125,44,91,93,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,41,123,118,97,114,32,111,61,116,46,109,97,116,99,104,40,47,40,40,63,58,92,45,124,92,43,41,63,92,100,42,92,46,63,92,100,42,41,40,46,42,41,47,41,44,114,61,43,111,91,49,93,44,115,61,111,91,50,93,59,105,102,40,33,114,41,114,101,116,117,114,110,32,116,59,105,102,40,48,33,61,61,115,46,105,110,100,101,120,79,102,40,34,37,34,41,41,114,101,116,117,114,110,34,118,104,34,33,61,61,115,38,38,34,118,119,34,33,61,61,115,63,114,58,40,34,118,104,34,61,61,61,115,63,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,44,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,124,124,48,41,58,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,87,105,100,116,104,44,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,124,124,48,41,41,47,49,48,48,42,114,59,118,97,114,32,97,61,118,111,105,100,32,48,59,115,119,105,116,99,104,40,115,41,123,99,97,115,101,34,37,112,34,58,97,61,110,59,98,114,101,97,107,59,99,97,115,101,34,37,34,58,99,97,115,101,34,37,114,34,58,100,101,102,97,117,108,116,58,97,61,105,125,114,101,116,117,114,110,32,86,116,40,97,41,91,101,93,47,49,48,48,42,114,125,40,116,44,110,44,111,44,114,41,125,41,125,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,99,101,40,116,41,38,38,40,115,91,105,93,43,61,116,42,40,34,45,34,61,61,61,110,91,101,45,49,93,63,45,49,58,49,41,41,125,41,125,41,44,115,125,118,97,114,32,69,101,61,123,112,108,97,99,101,109,101,110,116,58,34,98,111,116,116,111,109,34,44,112,111,115,105,116,105,111,110,70,105,120,101,100,58,33,49,44,101,118,101,110,116,115,69,110,97,98,108,101,100,58,33,48,44,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,58,33,49,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,125,44,109,111,100,105,102,105,101,114,115,58,123,115,104,105,102,116,58,123,111,114,100,101,114,58,49,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,101,46,115,112,108,105,116,40,34,45,34,41,91,49,93,59,105,102,40,105,41,123,118,97,114,32,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,114,101,102,101,114,101,110,99,101,44,115,61,111,46,112,111,112,112,101,114,44,97,61,45,49,33,61,61,91,34,98,111,116,116,111,109,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,110,41,44,108,61,97,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,97,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,44,104,61,123,115,116,97,114,116,58,75,116,40,123,125,44,108,44,114,91,108,93,41,44,101,110,100,58,75,116,40,123,125,44,108,44,114,91,108,93,43,114,91,99,93,45,115,91,99,93,41,125,59,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,115,44,104,91,105,93,41,125,114,101,116,117,114,110,32,116,125,125,44,111,102,102,115,101,116,58,123,111,114,100,101,114,58,50,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,111,102,102,115,101,116,44,105,61,116,46,112,108,97,99,101,109,101,110,116,44,111,61,116,46,111,102,102,115,101,116,115,44,114,61,111,46,112,111,112,112,101,114,44,115,61,111,46,114,101,102,101,114,101,110,99,101,44,97,61,105,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,108,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,108,61,99,101,40,43,110,41,63,91,43,110,44,48,93,58,121,101,40,110,44,114,44,115,44,97,41,44,34,108,101,102,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,45,61,108,91,49,93,41,58,34,114,105,103,104,116,34,61,61,61,97,63,40,114,46,116,111,112,43,61,108,91,48,93,44,114,46,108,101,102,116,43,61,108,91,49,93,41,58,34,116,111,112,34,61,61,61,97,63,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,45,61,108,91,49,93,41,58,34,98,111,116,116,111,109,34,61,61,61,97,38,38,40,114,46,108,101,102,116,43,61,108,91,48,93,44,114,46,116,111,112,43,61,108,91,49,93,41,44,116,46,112,111,112,112,101,114,61,114,44,116,125,44,111,102,102,115,101,116,58,48,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,111,114,100,101,114,58,51,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,118,97,114,32,101,61,105,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,124,124,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,59,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,61,61,61,101,38,38,40,101,61,106,116,40,101,41,41,59,118,97,114,32,110,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,111,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,115,116,121,108,101,44,114,61,111,46,116,111,112,44,115,61,111,46,108,101,102,116,44,97,61,111,91,110,93,59,111,46,116,111,112,61,34,34,44,111,46,108,101,102,116,61,34,34,44,111,91,110,93,61,34,34,59,118,97,114,32,108,61,71,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,105,46,112,97,100,100,105,110,103,44,101,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,59,111,46,116,111,112,61,114,44,111,46,108,101,102,116,61,115,44,111,91,110,93,61,97,44,105,46,98,111,117,110,100,97,114,105,101,115,61,108,59,118,97,114,32,99,61,105,46,112,114,105,111,114,105,116,121,44,104,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,117,61,123,112,114,105,109,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,104,91,116,93,59,114,101,116,117,114,110,32,104,91,116,93,60,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,101,61,77,97,116,104,46,109,97,120,40,104,91,116,93,44,108,91,116,93,41,41,44,75,116,40,123,125,44,116,44,101,41,125,44,115,101,99,111,110,100,97,114,121,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,34,114,105,103,104,116,34,61,61,61,116,63,34,108,101,102,116,34,58,34,116,111,112,34,44,110,61,104,91,101,93,59,114,101,116,117,114,110,32,104,91,116,93,62,108,91,116,93,38,38,33,105,46,101,115,99,97,112,101,87,105,116,104,82,101,102,101,114,101,110,99,101,38,38,40,110,61,77,97,116,104,46,109,105,110,40,104,91,101,93,44,108,91,116,93,45,40,34,114,105,103,104,116,34,61,61,61,116,63,104,46,119,105,100,116,104,58,104,46,104,101,105,103,104,116,41,41,41,44,75,116,40,123,125,44,101,44,110,41,125,125,59,114,101,116,117,114,110,32,99,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,116,111,112,34,93,46,105,110,100,101,120,79,102,40,116,41,63,34,112,114,105,109,97,114,121,34,58,34,115,101,99,111,110,100,97,114,121,34,59,104,61,81,116,40,123,125,44,104,44,117,91,101,93,40,116,41,41,125,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,104,44,116,125,44,112,114,105,111,114,105,116,121,58,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,44,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,125,44,107,101,101,112,84,111,103,101,116,104,101,114,58,123,111,114,100,101,114,58,52,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,44,110,61,101,46,112,111,112,112,101,114,44,105,61,101,46,114,101,102,101,114,101,110,99,101,44,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,111,41,44,97,61,115,63,34,114,105,103,104,116,34,58,34,98,111,116,116,111,109,34,44,108,61,115,63,34,108,101,102,116,34,58,34,116,111,112,34,44,99,61,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,59,114,101,116,117,114,110,32,110,91,97,93,60,114,40,105,91,108,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,108,93,41,45,110,91,99,93,41,44,110,91,108,93,62,114,40,105,91,97,93,41,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,108,93,61,114,40,105,91,97,93,41,41,44,116,125,125,44,97,114,114,111,119,58,123,111,114,100,101,114,58,53,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,59,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,97,114,114,111,119,34,44,34,107,101,101,112,84,111,103,101,116,104,101,114,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,105,61,101,46,101,108,101,109,101,110,116,59,105,102,40,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,105,41,123,105,102,40,33,40,105,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,41,114,101,116,117,114,110,32,116,125,101,108,115,101,32,105,102,40,33,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,46,99,111,110,116,97,105,110,115,40,105,41,41,114,101,116,117,114,110,32,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,97,114,114,111,119,46,101,108,101,109,101,110,116,96,32,109,117,115,116,32,98,101,32,99,104,105,108,100,32,111,102,32,105,116,115,32,112,111,112,112,101,114,32,101,108,101,109,101,110,116,33,34,41,44,116,59,118,97,114,32,111,61,116,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,114,61,116,46,111,102,102,115,101,116,115,44,115,61,114,46,112,111,112,112,101,114,44,97,61,114,46,114,101,102,101,114,101,110,99,101,44,108,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,111,41,44,99,61,108,63,34,104,101,105,103,104,116,34,58,34,119,105,100,116,104,34,44,104,61,108,63,34,84,111,112,34,58,34,76,101,102,116,34,44,117,61,104,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,102,61,108,63,34,108,101,102,116,34,58,34,116,111,112,34,44,100,61,108,63,34,98,111,116,116,111,109,34,58,34,114,105,103,104,116,34,44,112,61,90,116,40,105,41,91,99,93,59,97,91,100,93,45,112,60,115,91,117,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,61,115,91,117,93,45,40,97,91,100,93,45,112,41,41,44,97,91,117,93,43,112,62,115,91,100,93,38,38,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,43,61,97,91,117,93,43,112,45,115,91,100,93,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,41,59,118,97,114,32,109,61,97,91,117,93,43,97,91,99,93,47,50,45,112,47,50,44,103,61,78,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,95,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,109,97,114,103,105,110,34,43,104,93,44,49,48,41,44,118,61,112,97,114,115,101,70,108,111,97,116,40,103,91,34,98,111,114,100,101,114,34,43,104,43,34,87,105,100,116,104,34,93,44,49,48,41,44,121,61,109,45,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,91,117,93,45,95,45,118,59,114,101,116,117,114,110,32,121,61,77,97,116,104,46,109,97,120,40,77,97,116,104,46,109,105,110,40,115,91,99,93,45,112,44,121,41,44,48,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,61,105,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,61,40,75,116,40,110,61,123,125,44,117,44,77,97,116,104,46,114,111,117,110,100,40,121,41,41,44,75,116,40,110,44,102,44,34,34,41,44,110,41,44,116,125,44,101,108,101,109,101,110,116,58,34,91,120,45,97,114,114,111,119,93,34,125,44,102,108,105,112,58,123,111,114,100,101,114,58,54,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,112,44,109,41,123,105,102,40,111,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,105,110,110,101,114,34,41,41,114,101,116,117,114,110,32,112,59,105,102,40,112,46,102,108,105,112,112,101,100,38,38,112,46,112,108,97,99,101,109,101,110,116,61,61,61,112,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,41,114,101,116,117,114,110,32,112,59,118,97,114,32,103,61,71,116,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,105,110,115,116,97,110,99,101,46,114,101,102,101,114,101,110,99,101,44,109,46,112,97,100,100,105,110,103,44,109,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,112,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,44,121,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,49,93,124,124,34,34,44,69,61,91,93,59,115,119,105,116,99,104,40,109,46,98,101,104,97,118,105,111,114,41,123,99,97,115,101,32,103,101,58,69,61,91,95,44,118,93,59,98,114,101,97,107,59,99,97,115,101,32,95,101,58,69,61,109,101,40,95,41,59,98,114,101,97,107,59,99,97,115,101,32,118,101,58,69,61,109,101,40,95,44,33,48,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,69,61,109,46,98,101,104,97,118,105,111,114,125,114,101,116,117,114,110,32,69,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,95,33,61,61,116,124,124,69,46,108,101,110,103,116,104,61,61,61,101,43,49,41,114,101,116,117,114,110,32,112,59,95,61,112,46,112,108,97,99,101,109,101,110,116,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,118,61,116,101,40,95,41,59,118,97,114,32,110,44,105,61,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,111,61,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,114,61,77,97,116,104,46,102,108,111,111,114,44,115,61,34,108,101,102,116,34,61,61,61,95,38,38,114,40,105,46,114,105,103,104,116,41,62,114,40,111,46,108,101,102,116,41,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,114,40,105,46,108,101,102,116,41,60,114,40,111,46,114,105,103,104,116,41,124,124,34,116,111,112,34,61,61,61,95,38,38,114,40,105,46,98,111,116,116,111,109,41,62,114,40,111,46,116,111,112,41,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,114,40,105,46,116,111,112,41,60,114,40,111,46,98,111,116,116,111,109,41,44,97,61,114,40,105,46,108,101,102,116,41,60,114,40,103,46,108,101,102,116,41,44,108,61,114,40,105,46,114,105,103,104,116,41,62,114,40,103,46,114,105,103,104,116,41,44,99,61,114,40,105,46,116,111,112,41,60,114,40,103,46,116,111,112,41,44,104,61,114,40,105,46,98,111,116,116,111,109,41,62,114,40,103,46,98,111,116,116,111,109,41,44,117,61,34,108,101,102,116,34,61,61,61,95,38,38,97,124,124,34,114,105,103,104,116,34,61,61,61,95,38,38,108,124,124,34,116,111,112,34,61,61,61,95,38,38,99,124,124,34,98,111,116,116,111,109,34,61,61,61,95,38,38,104,44,102,61,45,49,33,61,61,91,34,116,111,112,34,44,34,98,111,116,116,111,109,34,93,46,105,110,100,101,120,79,102,40,95,41,44,100,61,33,33,109,46,102,108,105,112,86,97,114,105,97,116,105,111,110,115,38,38,40,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,97,124,124,102,38,38,34,101,110,100,34,61,61,61,121,38,38,108,124,124,33,102,38,38,34,115,116,97,114,116,34,61,61,61,121,38,38,99,124,124,33,102,38,38,34,101,110,100,34,61,61,61,121,38,38,104,41,59,40,115,124,124,117,124,124,100,41,38,38,40,112,46,102,108,105,112,112,101,100,61,33,48,44,40,115,124,124,117,41,38,38,40,95,61,69,91,101,43,49,93,41,44,100,38,38,40,121,61,34,101,110,100,34,61,61,61,40,110,61,121,41,63,34,115,116,97,114,116,34,58,34,115,116,97,114,116,34,61,61,61,110,63,34,101,110,100,34,58,110,41,44,112,46,112,108,97,99,101,109,101,110,116,61,95,43,40,121,63,34,45,34,43,121,58,34,34,41,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,81,116,40,123,125,44,112,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,101,101,40,112,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,112,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,112,46,112,108,97,99,101,109,101,110,116,41,41,44,112,61,105,101,40,112,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,112,44,34,102,108,105,112,34,41,41,125,41,44,112,125,44,98,101,104,97,118,105,111,114,58,34,102,108,105,112,34,44,112,97,100,100,105,110,103,58,53,44,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,34,118,105,101,119,112,111,114,116,34,125,44,105,110,110,101,114,58,123,111,114,100,101,114,58,55,48,48,44,101,110,97,98,108,101,100,58,33,49,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,112,108,97,99,101,109,101,110,116,44,110,61,101,46,115,112,108,105,116,40,34,45,34,41,91,48,93,44,105,61,116,46,111,102,102,115,101,116,115,44,111,61,105,46,112,111,112,112,101,114,44,114,61,105,46,114,101,102,101,114,101,110,99,101,44,115,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,110,41,44,97,61,45,49,61,61,61,91,34,116,111,112,34,44,34,108,101,102,116,34,93,46,105,110,100,101,120,79,102,40,110,41,59,114,101,116,117,114,110,32,111,91,115,63,34,108,101,102,116,34,58,34,116,111,112,34,93,61,114,91,110,93,45,40,97,63,111,91,115,63,34,119,105,100,116,104,34,58,34,104,101,105,103,104,116,34,93,58,48,41,44,116,46,112,108,97,99,101,109,101,110,116,61,116,101,40,101,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,86,116,40,111,41,44,116,125,125,44,104,105,100,101,58,123,111,114,100,101,114,58,56,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,102,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,34,104,105,100,101,34,44,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,41,41,114,101,116,117,114,110,32,116,59,118,97,114,32,101,61,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,110,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,34,61,61,61,116,46,110,97,109,101,125,41,46,98,111,117,110,100,97,114,105,101,115,59,105,102,40,101,46,98,111,116,116,111,109,60,110,46,116,111,112,124,124,101,46,108,101,102,116,62,110,46,114,105,103,104,116,124,124,101,46,116,111,112,62,110,46,98,111,116,116,111,109,124,124,101,46,114,105,103,104,116,60,110,46,108,101,102,116,41,123,105,102,40,33,48,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,48,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,34,34,125,101,108,115,101,123,105,102,40,33,49,61,61,61,116,46,104,105,100,101,41,114,101,116,117,114,110,32,116,59,116,46,104,105,100,101,61,33,49,44,116,46,97,116,116,114,105,98,117,116,101,115,91,34,120,45,111,117,116,45,111,102,45,98,111,117,110,100,97,114,105,101,115,34,93,61,33,49,125,114,101,116,117,114,110,32,116,125,125,44,99,111,109,112,117,116,101,83,116,121,108,101,58,123,111,114,100,101,114,58,56,53,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,120,44,105,61,101,46,121,44,111,61,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,44,114,61,110,101,40,116,46,105,110,115,116,97,110,99,101,46,109,111,100,105,102,105,101,114,115,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,34,97,112,112,108,121,83,116,121,108,101,34,61,61,61,116,46,110,97,109,101,125,41,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,59,118,111,105,100,32,48,33,61,61,114,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,87,65,82,78,73,78,71,58,32,96,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,96,32,111,112,116,105,111,110,32,109,111,118,101,100,32,116,111,32,96,99,111,109,112,117,116,101,83,116,121,108,101,96,32,109,111,100,105,102,105,101,114,32,97,110,100,32,119,105,108,108,32,110,111,116,32,98,101,32,115,117,112,112,111,114,116,101,100,32,105,110,32,102,117,116,117,114,101,32,118,101,114,115,105,111,110,115,32,111,102,32,80,111,112,112,101,114,46,106,115,33,34,41,59,118,97,114,32,115,44,97,44,108,44,99,44,104,44,117,44,102,44,100,44,112,44,109,44,103,44,95,44,118,44,121,44,69,61,118,111,105,100,32,48,33,61,61,114,63,114,58,101,46,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,44,98,61,106,116,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,41,44,119,61,89,116,40,98,41,44,67,61,123,112,111,115,105,116,105,111,110,58,111,46,112,111,115,105,116,105,111,110,125,44,84,61,40,115,61,116,44,97,61,119,105,110,100,111,119,46,100,101,118,105,99,101,80,105,120,101,108,82,97,116,105,111,60,50,124,124,33,117,101,44,108,61,115,46,111,102,102,115,101,116,115,44,99,61,108,46,112,111,112,112,101,114,44,104,61,108,46,114,101,102,101,114,101,110,99,101,44,117,61,77,97,116,104,46,114,111,117,110,100,44,102,61,77,97,116,104,46,102,108,111,111,114,44,100,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,44,112,61,117,40,104,46,119,105,100,116,104,41,44,109,61,117,40,99,46,119,105,100,116,104,41,44,103,61,45,49,33,61,61,91,34,108,101,102,116,34,44,34,114,105,103,104,116,34,93,46,105,110,100,101,120,79,102,40,115,46,112,108,97,99,101,109,101,110,116,41,44,95,61,45,49,33,61,61,115,46,112,108,97,99,101,109,101,110,116,46,105,110,100,101,120,79,102,40,34,45,34,41,44,121,61,97,63,117,58,100,44,123,108,101,102,116,58,40,118,61,97,63,103,124,124,95,124,124,112,37,50,61,61,109,37,50,63,117,58,102,58,100,41,40,112,37,50,61,61,49,38,38,109,37,50,61,61,49,38,38,33,95,38,38,97,63,99,46,108,101,102,116,45,49,58,99,46,108,101,102,116,41,44,116,111,112,58,121,40,99,46,116,111,112,41,44,98,111,116,116,111,109,58,121,40,99,46,98,111,116,116,111,109,41,44,114,105,103,104,116,58,118,40,99,46,114,105,103,104,116,41,125,41,44,83,61,34,98,111,116,116,111,109,34,61,61,61,110,63,34,116,111,112,34,58,34,98,111,116,116,111,109,34,44,68,61,34,114,105,103,104,116,34,61,61,61,105,63,34,108,101,102,116,34,58,34,114,105,103,104,116,34,44,73,61,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,44,65,61,118,111,105,100,32,48,44,79,61,118,111,105,100,32,48,59,105,102,40,79,61,34,98,111,116,116,111,109,34,61,61,61,83,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,72,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,45,119,46,104,101,105,103,104,116,43,84,46,98,111,116,116,111,109,58,84,46,116,111,112,44,65,61,34,114,105,103,104,116,34,61,61,61,68,63,34,72,84,77,76,34,61,61,61,98,46,110,111,100,101,78,97,109,101,63,45,98,46,99,108,105,101,110,116,87,105,100,116,104,43,84,46,114,105,103,104,116,58,45,119,46,119,105,100,116,104,43,84,46,114,105,103,104,116,58,84,46,108,101,102,116,44,69,38,38,73,41,67,91,73,93,61,34,116,114,97,110,115,108,97,116,101,51,100,40,34,43,65,43,34,112,120,44,32,34,43,79,43,34,112,120,44,32,48,41,34,44,67,91,83,93,61,48,44,67,91,68,93,61,48,44,67,46,119,105,108,108,67,104,97,110,103,101,61,34,116,114,97,110,115,102,111,114,109,34,59,101,108,115,101,123,118,97,114,32,78,61,34,98,111,116,116,111,109,34,61,61,61,83,63,45,49,58,49,44,107,61,34,114,105,103,104,116,34,61,61,61,68,63,45,49,58,49,59,67,91,83,93,61,79,42,78,44,67,91,68,93,61,65,42,107,44,67,46,119,105,108,108,67,104,97,110,103,101,61,83,43,34,44,32,34,43,68,125,118,97,114,32,76,61,123,34,120,45,112,108,97,99,101,109,101,110,116,34,58,116,46,112,108,97,99,101,109,101,110,116,125,59,114,101,116,117,114,110,32,116,46,97,116,116,114,105,98,117,116,101,115,61,81,116,40,123,125,44,76,44,116,46,97,116,116,114,105,98,117,116,101,115,41,44,116,46,115,116,121,108,101,115,61,81,116,40,123,125,44,67,44,116,46,115,116,121,108,101,115,41,44,116,46,97,114,114,111,119,83,116,121,108,101,115,61,81,116,40,123,125,44,116,46,111,102,102,115,101,116,115,46,97,114,114,111,119,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,33,48,44,120,58,34,98,111,116,116,111,109,34,44,121,58,34,114,105,103,104,116,34,125,44,97,112,112,108,121,83,116,121,108,101,58,123,111,114,100,101,114,58,57,48,48,44,101,110,97,98,108,101,100,58,33,48,44,102,110,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,114,101,116,117,114,110,32,104,101,40,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,116,46,115,116,121,108,101,115,41,44,101,61,116,46,105,110,115,116,97,110,99,101,46,112,111,112,112,101,114,44,110,61,116,46,97,116,116,114,105,98,117,116,101,115,44,79,98,106,101,99,116,46,107,101,121,115,40,110,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,33,49,33,61,61,110,91,116,93,63,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,116,44,110,91,116,93,41,58,101,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,41,125,41,44,116,46,97,114,114,111,119,69,108,101,109,101,110,116,38,38,79,98,106,101,99,116,46,107,101,121,115,40,116,46,97,114,114,111,119,83,116,121,108,101,115,41,46,108,101,110,103,116,104,38,38,104,101,40,116,46,97,114,114,111,119,69,108,101,109,101,110,116,44,116,46,97,114,114,111,119,83,116,121,108,101,115,41,44,116,125,44,111,110,76,111,97,100,58,102,117,110,99,116,105,111,110,40,116,44,101,44,110,44,105,44,111,41,123,118,97,114,32,114,61,74,116,40,111,44,101,44,116,44,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,115,61,36,116,40,110,46,112,108,97,99,101,109,101,110,116,44,114,44,101,44,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,110,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,59,114,101,116,117,114,110,32,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,44,115,41,44,104,101,40,101,44,123,112,111,115,105,116,105,111,110,58,110,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,125,41,44,110,125,44,103,112,117,65,99,99,101,108,101,114,97,116,105,111,110,58,118,111,105,100,32,48,125,125,125,44,98,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,114,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,50,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,123,125,59,33,102,117,110,99,116,105,111,110,40,116,44,101,41,123,105,102,40,33,40,116,32,105,110,115,116,97,110,99,101,111,102,32,101,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,40,116,104,105,115,44,114,41,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,110,46,117,112,100,97,116,101,41,125,44,116,104,105,115,46,117,112,100,97,116,101,61,65,116,40,116,104,105,115,46,117,112,100,97,116,101,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,44,105,41,44,116,104,105,115,46,115,116,97,116,101,61,123,105,115,68,101,115,116,114,111,121,101,100,58,33,49,44,105,115,67,114,101,97,116,101,100,58,33,49,44,115,99,114,111,108,108,80,97,114,101,110,116,115,58,91,93,125,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,61,116,38,38,116,46,106,113,117,101,114,121,63,116,91,48,93,58,116,44,116,104,105,115,46,112,111,112,112,101,114,61,101,38,38,101,46,106,113,117,101,114,121,63,101,91,48,93,58,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,61,123,125,44,79,98,106,101,99,116,46,107,101,121,115,40,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,44,105,46,109,111,100,105,102,105,101,114,115,41,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,61,81,116,40,123,125,44,114,46,68,101,102,97,117,108,116,115,46,109,111,100,105,102,105,101,114,115,91,116,93,124,124,123,125,44,105,46,109,111,100,105,102,105,101,114,115,63,105,46,109,111,100,105,102,105,101,114,115,91,116,93,58,123,125,41,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,61,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,123,110,97,109,101,58,116,125,44,110,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,91,116,93,41,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,46,111,114,100,101,114,45,101,46,111,114,100,101,114,125,41,44,116,104,105,115,46,109,111,100,105,102,105,101,114,115,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,101,110,97,98,108,101,100,38,38,79,116,40,116,46,111,110,76,111,97,100,41,38,38,116,46,111,110,76,111,97,100,40,110,46,114,101,102,101,114,101,110,99,101,44,110,46,112,111,112,112,101,114,44,110,46,111,112,116,105,111,110,115,44,116,44,110,46,115,116,97,116,101,41,125,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,59,118,97,114,32,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,101,118,101,110,116,115,69,110,97,98,108,101,100,59,111,38,38,116,104,105,115,46,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,61,111,125,114,101,116,117,114,110,32,113,116,40,114,44,91,123,107,101,121,58,34,117,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,41,123,118,97,114,32,116,61,123,105,110,115,116,97,110,99,101,58,116,104,105,115,44,115,116,121,108,101,115,58,123,125,44,97,114,114,111,119,83,116,121,108,101,115,58,123,125,44,97,116,116,114,105,98,117,116,101,115,58,123,125,44,102,108,105,112,112,101,100,58,33,49,44,111,102,102,115,101,116,115,58,123,125,125,59,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,61,74,116,40,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,41,44,116,46,112,108,97,99,101,109,101,110,116,61,36,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,108,97,99,101,109,101,110,116,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,112,111,112,112,101,114,44,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,111,100,105,102,105,101,114,115,46,102,108,105,112,46,112,97,100,100,105,110,103,41,44,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,61,116,46,112,108,97,99,101,109,101,110,116,44,116,46,112,111,115,105,116,105,111,110,70,105,120,101,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,61,101,101,40,116,104,105,115,46,112,111,112,112,101,114,44,116,46,111,102,102,115,101,116,115,46,114,101,102,101,114,101,110,99,101,44,116,46,112,108,97,99,101,109,101,110,116,41,44,116,46,111,102,102,115,101,116,115,46,112,111,112,112,101,114,46,112,111,115,105,116,105,111,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,111,115,105,116,105,111,110,70,105,120,101,100,63,34,102,105,120,101,100,34,58,34,97,98,115,111,108,117,116,101,34,44,116,61,105,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,116,41,44,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,41,58,40,116,104,105,115,46,115,116,97,116,101,46,105,115,67,114,101,97,116,101,100,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,114,101,97,116,101,40,116,41,41,125,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,101,115,116,114,111,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,46,105,115,68,101,115,116,114,111,121,101,100,61,33,48,44,111,101,40,116,104,105,115,46,109,111,100,105,102,105,101,114,115,44,34,97,112,112,108,121,83,116,121,108,101,34,41,38,38,40,116,104,105,115,46,112,111,112,112,101,114,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,112,111,115,105,116,105,111,110,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,116,111,112,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,108,101,102,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,114,105,103,104,116,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,98,111,116,116,111,109,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,46,119,105,108,108,67,104,97,110,103,101,61,34,34,44,116,104,105,115,46,112,111,112,112,101,114,46,115,116,121,108,101,91,114,101,40,34,116,114,97,110,115,102,111,114,109,34,41,93,61,34,34,41,44,116,104,105,115,46,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,114,101,109,111,118,101,79,110,68,101,115,116,114,111,121,38,38,116,104,105,115,46,112,111,112,112,101,114,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,116,104,105,115,46,112,111,112,112,101,114,41,44,116,104,105,115,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,116,97,116,101,46,101,118,101,110,116,115,69,110,97,98,108,101,100,124,124,40,116,104,105,115,46,115,116,97,116,101,61,97,101,40,116,104,105,115,46,114,101,102,101,114,101,110,99,101,44,116,104,105,115,46,111,112,116,105,111,110,115,44,116,104,105,115,46,115,116,97,116,101,44,116,104,105,115,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,41,41,125,46,99,97,108,108,40,116,104,105,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,69,118,101,110,116,76,105,115,116,101,110,101,114,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,101,46,99,97,108,108,40,116,104,105,115,41,125,125,93,41,44,114,125,40,41,59,98,101,46,85,116,105,108,115,61,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,103,108,111,98,97,108,41,46,80,111,112,112,101,114,85,116,105,108,115,44,98,101,46,112,108,97,99,101,109,101,110,116,115,61,100,101,44,98,101,46,68,101,102,97,117,108,116,115,61,69,101,59,118,97,114,32,119,101,61,34,100,114,111,112,100,111,119,110,34,44,67,101,61,34,98,115,46,100,114,111,112,100,111,119,110,34,44,84,101,61,34,46,34,43,67,101,44,83,101,61,34,46,100,97,116,97,45,97,112,105,34,44,68,101,61,112,46,102,110,91,119,101,93,44,73,101,61,110,101,119,32,82,101,103,69,120,112,40,34,51,56,124,52,48,124,50,55,34,41,44,65,101,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,101,44,83,72,79,87,58,34,115,104,111,119,34,43,84,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,101,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,84,101,43,83,101,44,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,58,34,107,101,121,100,111,119,110,34,43,84,101,43,83,101,44,75,69,89,85,80,95,68,65,84,65,95,65,80,73,58,34,107,101,121,117,112,34,43,84,101,43,83,101,125,44,79,101,61,34,100,105,115,97,98,108,101,100,34,44,78,101,61,34,115,104,111,119,34,44,107,101,61,34,100,114,111,112,117,112,34,44,76,101,61,34,100,114,111,112,114,105,103,104,116,34,44,120,101,61,34,100,114,111,112,108,101,102,116,34,44,80,101,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,45,114,105,103,104,116,34,44,72,101,61,34,112,111,115,105,116,105,111,110,45,115,116,97,116,105,99,34,44,106,101,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,100,114,111,112,100,111,119,110,34,93,39,44,82,101,61,34,46,100,114,111,112,100,111,119,110,32,102,111,114,109,34,44,70,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,77,101,61,34,46,110,97,118,98,97,114,45,110,97,118,34,44,87,101,61,34,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,100,114,111,112,100,111,119,110,45,105,116,101,109,58,110,111,116,40,46,100,105,115,97,98,108,101,100,41,58,110,111,116,40,58,100,105,115,97,98,108,101,100,41,34,44,85,101,61,34,116,111,112,45,115,116,97,114,116,34,44,66,101,61,34,116,111,112,45,101,110,100,34,44,113,101,61,34,98,111,116,116,111,109,45,115,116,97,114,116,34,44,75,101,61,34,98,111,116,116,111,109,45,101,110,100,34,44,81,101,61,34,114,105,103,104,116,45,115,116,97,114,116,34,44,86,101,61,34,108,101,102,116,45,115,116,97,114,116,34,44,89,101,61,123,111,102,102,115,101,116,58,48,44,102,108,105,112,58,33,48,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,114,101,102,101,114,101,110,99,101,58,34,116,111,103,103,108,101,34,44,100,105,115,112,108,97,121,58,34,100,121,110,97,109,105,99,34,125,44,122,101,61,123,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,102,108,105,112,58,34,98,111,111,108,101,97,110,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,114,101,102,101,114,101,110,99,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,100,105,115,112,108,97,121,58,34,115,116,114,105,110,103,34,125,44,88,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,99,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,109,101,110,117,61,116,104,105,115,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,40,41,44,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,116,104,105,115,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,99,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,101,61,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,99,46,95,99,108,101,97,114,77,101,110,117,115,40,41,44,33,101,41,123,118,97,114,32,110,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,105,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,110,41,59,105,102,40,112,40,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,33,116,104,105,115,46,95,105,110,78,97,118,98,97,114,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,100,114,111,112,100,111,119,110,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,118,97,114,32,111,61,116,104,105,115,46,95,101,108,101,109,101,110,116,59,34,112,97,114,101,110,116,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,63,111,61,116,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,41,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,46,106,113,117,101,114,121,38,38,40,111,61,116,104,105,115,46,95,99,111,110,102,105,103,46,114,101,102,101,114,101,110,99,101,91,48,93,41,41,44,34,115,99,114,111,108,108,80,97,114,101,110,116,34,33,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,38,38,112,40,116,41,46,97,100,100,67,108,97,115,115,40,72,101,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,111,44,116,104,105,115,46,95,109,101,110,117,44,116,104,105,115,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,40,41,41,125,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,48,61,61,61,112,40,116,41,46,99,108,111,115,101,115,116,40,77,101,41,46,108,101,110,103,116,104,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,116,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,110,41,41,125,125,125,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,124,124,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,83,72,79,87,78,44,116,41,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,101,108,101,109,101,110,116,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,101,41,38,38,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,78,101,41,41,123,118,97,114,32,116,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,44,101,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,116,41,44,110,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,110,41,46,116,114,105,103,103,101,114,40,101,41,44,101,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,112,40,116,104,105,115,46,95,109,101,110,117,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,44,112,40,110,41,46,116,111,103,103,108,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,116,41,41,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,67,101,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,84,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,40,116,104,105,115,46,95,109,101,110,117,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,40,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,41,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,110,78,97,118,98,97,114,61,116,104,105,115,46,95,100,101,116,101,99,116,78,97,118,98,97,114,40,41,44,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,95,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,65,101,46,67,76,73,67,75,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,116,111,103,103,108,101,40,41,125,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,101,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,103,101,116,77,101,110,117,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,95,109,101,110,117,41,123,118,97,114,32,116,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,116,38,38,40,116,104,105,115,46,95,109,101,110,117,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,70,101,41,41,125,114,101,116,117,114,110,32,116,104,105,115,46,95,109,101,110,117,125,44,116,46,95,103,101,116,80,108,97,99,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,41,44,101,61,113,101,59,114,101,116,117,114,110,32,116,46,104,97,115,67,108,97,115,115,40,107,101,41,63,40,101,61,85,101,44,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,66,101,41,41,58,116,46,104,97,115,67,108,97,115,115,40,76,101,41,63,101,61,81,101,58,116,46,104,97,115,67,108,97,115,115,40,120,101,41,63,101,61,86,101,58,112,40,116,104,105,115,46,95,109,101,110,117,41,46,104,97,115,67,108,97,115,115,40,80,101,41,38,38,40,101,61,75,101,41,44,101,125,44,116,46,95,100,101,116,101,99,116,78,97,118,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,110,97,118,98,97,114,34,41,46,108,101,110,103,116,104,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,95,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,80,111,112,112,101,114,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,112,108,97,99,101,109,101,110,116,58,116,104,105,115,46,95,103,101,116,80,108,97,99,101,109,101,110,116,40,41,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,101,110,97,98,108,101,100,58,116,104,105,115,46,95,99,111,110,102,105,103,46,102,108,105,112,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,125,59,114,101,116,117,114,110,34,115,116,97,116,105,99,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,100,105,115,112,108,97,121,38,38,40,116,46,109,111,100,105,102,105,101,114,115,46,97,112,112,108,121,83,116,121,108,101,61,123,101,110,97,98,108,101,100,58,33,49,125,41,44,116,125,44,99,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,99,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,63,101,58,110,117,108,108,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,99,46,95,99,108,101,97,114,77,101,110,117,115,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,116,124,124,51,33,61,61,116,46,119,104,105,99,104,38,38,40,34,107,101,121,117,112,34,33,61,61,116,46,116,121,112,101,124,124,57,61,61,61,116,46,119,104,105,99,104,41,41,102,111,114,40,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,106,101,41,41,44,110,61,48,44,105,61,101,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,123,118,97,114,32,111,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,101,91,110,93,41,44,114,61,112,40,101,91,110,93,41,46,100,97,116,97,40,67,101,41,44,115,61,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,91,110,93,125,59,105,102,40,116,38,38,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,40,115,46,99,108,105,99,107,69,118,101,110,116,61,116,41,44,114,41,123,118,97,114,32,97,61,114,46,95,109,101,110,117,59,105,102,40,112,40,111,41,46,104,97,115,67,108,97,115,115,40,78,101,41,38,38,33,40,116,38,38,40,34,99,108,105,99,107,34,61,61,61,116,46,116,121,112,101,38,38,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,124,124,34,107,101,121,117,112,34,61,61,61,116,46,116,121,112,101,38,38,57,61,61,61,116,46,119,104,105,99,104,41,38,38,112,46,99,111,110,116,97,105,110,115,40,111,44,116,46,116,97,114,103,101,116,41,41,41,123,118,97,114,32,108,61,112,46,69,118,101,110,116,40,65,101,46,72,73,68,69,44,115,41,59,112,40,111,41,46,116,114,105,103,103,101,114,40,108,41,44,108,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,101,91,110,93,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,34,102,97,108,115,101,34,41,44,112,40,97,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,44,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,78,101,41,46,116,114,105,103,103,101,114,40,112,46,69,118,101,110,116,40,65,101,46,72,73,68,68,69,78,44,115,41,41,41,125,125,125,125,44,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,114,101,116,117,114,110,32,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,124,124,116,46,112,97,114,101,110,116,78,111,100,101,125,44,99,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,40,47,105,110,112,117,116,124,116,101,120,116,97,114,101,97,47,105,46,116,101,115,116,40,116,46,116,97,114,103,101,116,46,116,97,103,78,97,109,101,41,63,33,40,51,50,61,61,61,116,46,119,104,105,99,104,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,40,52,48,33,61,61,116,46,119,104,105,99,104,38,38,51,56,33,61,61,116,46,119,104,105,99,104,124,124,112,40,116,46,116,97,114,103,101,116,41,46,99,108,111,115,101,115,116,40,70,101,41,46,108,101,110,103,116,104,41,41,58,73,101,46,116,101,115,116,40,116,46,119,104,105,99,104,41,41,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,116,104,105,115,46,100,105,115,97,98,108,101,100,38,38,33,112,40,116,104,105,115,41,46,104,97,115,67,108,97,115,115,40,79,101,41,41,41,123,118,97,114,32,101,61,99,46,95,103,101,116,80,97,114,101,110,116,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,44,110,61,112,40,101,41,46,104,97,115,67,108,97,115,115,40,78,101,41,59,105,102,40,110,38,38,40,33,110,124,124,50,55,33,61,61,116,46,119,104,105,99,104,38,38,51,50,33,61,61,116,46,119,104,105,99,104,41,41,123,118,97,114,32,105,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,87,101,41,41,59,105,102,40,48,33,61,61,105,46,108,101,110,103,116,104,41,123,118,97,114,32,111,61,105,46,105,110,100,101,120,79,102,40,116,46,116,97,114,103,101,116,41,59,51,56,61,61,61,116,46,119,104,105,99,104,38,38,48,60,111,38,38,111,45,45,44,52,48,61,61,61,116,46,119,104,105,99,104,38,38,111,60,105,46,108,101,110,103,116,104,45,49,38,38,111,43,43,44,111,60,48,38,38,40,111,61,48,41,44,105,91,111,93,46,102,111,99,117,115,40,41,125,125,101,108,115,101,123,105,102,40,50,55,61,61,61,116,46,119,104,105,99,104,41,123,118,97,114,32,114,61,101,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,106,101,41,59,112,40,114,41,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,125,112,40,116,104,105,115,41,46,116,114,105,103,103,101,114,40,34,99,108,105,99,107,34,41,125,125,125,44,115,40,99,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,122,101,125,125,93,41,44,99,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,106,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,75,69,89,68,79,87,78,95,68,65,84,65,95,65,80,73,44,70,101,44,88,101,46,95,100,97,116,97,65,112,105,75,101,121,100,111,119,110,72,97,110,100,108,101,114,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,43,34,32,34,43,65,101,46,75,69,89,85,80,95,68,65,84,65,95,65,80,73,44,88,101,46,95,99,108,101,97,114,77,101,110,117,115,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,106,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,116,111,103,103,108,101,34,41,125,41,46,111,110,40,65,101,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,101,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,41,44,112,46,102,110,91,119,101,93,61,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,88,101,44,112,46,102,110,91,119,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,101,93,61,68,101,44,88,101,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,71,101,61,34,109,111,100,97,108,34,44,36,101,61,34,98,115,46,109,111,100,97,108,34,44,74,101,61,34,46,34,43,36,101,44,90,101,61,112,46,102,110,91,71,101,93,44,116,110,61,123,98,97,99,107,100,114,111,112,58,33,48,44,107,101,121,98,111,97,114,100,58,33,48,44,102,111,99,117,115,58,33,48,44,115,104,111,119,58,33,48,125,44,101,110,61,123,98,97,99,107,100,114,111,112,58,34,40,98,111,111,108,101,97,110,124,115,116,114,105,110,103,41,34,44,107,101,121,98,111,97,114,100,58,34,98,111,111,108,101,97,110,34,44,102,111,99,117,115,58,34,98,111,111,108,101,97,110,34,44,115,104,111,119,58,34,98,111,111,108,101,97,110,34,125,44,110,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,74,101,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,74,101,44,83,72,79,87,58,34,115,104,111,119,34,43,74,101,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,74,101,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,74,101,44,82,69,83,73,90,69,58,34,114,101,115,105,122,101,34,43,74,101,44,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,74,101,44,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,58,34,107,101,121,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,117,112,46,100,105,115,109,105,115,115,34,43,74,101,44,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,58,34,109,111,117,115,101,100,111,119,110,46,100,105,115,109,105,115,115,34,43,74,101,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,74,101,43,34,46,100,97,116,97,45,97,112,105,34,125,44,111,110,61,34,109,111,100,97,108,45,100,105,97,108,111,103,45,115,99,114,111,108,108,97,98,108,101,34,44,114,110,61,34,109,111,100,97,108,45,115,99,114,111,108,108,98,97,114,45,109,101,97,115,117,114,101,34,44,115,110,61,34,109,111,100,97,108,45,98,97,99,107,100,114,111,112,34,44,97,110,61,34,109,111,100,97,108,45,111,112,101,110,34,44,108,110,61,34,102,97,100,101,34,44,99,110,61,34,115,104,111,119,34,44,104,110,61,34,46,109,111,100,97,108,45,100,105,97,108,111,103,34,44,117,110,61,34,46,109,111,100,97,108,45,98,111,100,121,34,44,102,110,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,109,111,100,97,108,34,93,39,44,100,110,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,109,111,100,97,108,34,93,39,44,112,110,61,34,46,102,105,120,101,100,45,116,111,112,44,32,46,102,105,120,101,100,45,98,111,116,116,111,109,44,32,46,105,115,45,102,105,120,101,100,44,32,46,115,116,105,99,107,121,45,116,111,112,34,44,109,110,61,34,46,115,116,105,99,107,121,45,116,111,112,34,44,103,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,116,44,101,41,123,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,100,105,97,108,111,103,61,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,104,110,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,33,49,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,48,125,118,97,114,32,116,61,111,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,105,115,83,104,111,119,110,63,116,104,105,115,46,104,105,100,101,40,41,58,116,104,105,115,46,115,104,111,119,40,116,41,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,59,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,40,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,48,44,116,104,105,115,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,100,110,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,105,100,101,40,116,41,125,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,41,123,112,40,101,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,110,110,46,77,79,85,83,69,85,80,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,46,116,97,114,103,101,116,41,46,105,115,40,101,46,95,101,108,101,109,101,110,116,41,38,38,40,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,48,41,125,41,125,41,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,95,115,104,111,119,69,108,101,109,101,110,116,40,116,41,125,41,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,116,38,38,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,41,123,118,97,114,32,110,61,112,46,69,118,101,110,116,40,110,110,46,72,73,68,69,41,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,41,44,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,33,110,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,116,104,105,115,46,95,105,115,83,104,111,119,110,61,33,49,59,118,97,114,32,105,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,105,102,40,105,38,38,40,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,48,41,44,116,104,105,115,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,40,41,44,116,104,105,115,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,40,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,102,102,40,110,110,46,77,79,85,83,69,68,79,87,78,95,68,73,83,77,73,83,83,41,44,105,41,123,118,97,114,32,111,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,105,100,101,77,111,100,97,108,40,116,41,125,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,111,41,125,101,108,115,101,32,116,104,105,115,46,95,104,105,100,101,77,111,100,97,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,91,119,105,110,100,111,119,44,116,104,105,115,46,95,101,108,101,109,101,110,116,44,116,104,105,115,46,95,100,105,97,108,111,103,93,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,112,40,116,41,46,111,102,102,40,74,101,41,125,41,44,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,36,101,41,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,100,105,97,108,111,103,61,110,117,108,108,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,44,116,104,105,115,46,95,105,115,83,104,111,119,110,61,110,117,108,108,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,110,117,108,108,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,110,117,108,108,125,44,116,46,104,97,110,100,108,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,97,100,106,117,115,116,68,105,97,108,111,103,40,41,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,116,110,44,116,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,71,101,44,116,44,101,110,41,44,116,125,44,116,46,95,115,104,111,119,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,124,124,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,44,33,48,41,44,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,104,97,115,67,108,97,115,115,40,111,110,41,63,116,104,105,115,46,95,100,105,97,108,111,103,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,117,110,41,46,115,99,114,111,108,108,84,111,112,61,48,58,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,61,48,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,116,104,105,115,46,95,101,110,102,111,114,99,101,70,111,99,117,115,40,41,59,118,97,114,32,105,61,112,46,69,118,101,110,116,40,110,110,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,125,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,111,110,102,105,103,46,102,111,99,117,115,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,44,101,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,112,40,101,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,125,59,105,102,40,110,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,100,105,97,108,111,103,41,59,112,40,116,104,105,115,46,95,100,105,97,108,111,103,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,44,116,46,95,101,110,102,111,114,99,101,70,111,99,117,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,112,40,100,111,99,117,109,101,110,116,41,46,111,102,102,40,110,110,46,70,79,67,85,83,73,78,41,46,111,110,40,110,110,46,70,79,67,85,83,73,78,44,102,117,110,99,116,105,111,110,40,116,41,123,100,111,99,117,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,101,46,95,101,108,101,109,101,110,116,33,61,61,116,46,116,97,114,103,101,116,38,38,48,61,61,61,112,40,101,46,95,101,108,101,109,101,110,116,41,46,104,97,115,40,116,46,116,97,114,103,101,116,41,46,108,101,110,103,116,104,38,38,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,125,41,125,44,116,46,95,115,101,116,69,115,99,97,112,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,107,101,121,98,111,97,114,100,63,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,50,55,61,61,61,116,46,119,104,105,99,104,38,38,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,104,105,100,101,40,41,41,125,41,58,116,104,105,115,46,95,105,115,83,104,111,119,110,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,110,110,46,75,69,89,68,79,87,78,95,68,73,83,77,73,83,83,41,125,44,116,46,95,115,101,116,82,101,115,105,122,101,69,118,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,105,115,83,104,111,119,110,63,112,40,119,105,110,100,111,119,41,46,111,110,40,110,110,46,82,69,83,73,90,69,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,104,97,110,100,108,101,85,112,100,97,116,101,40,116,41,125,41,58,112,40,119,105,110,100,111,119,41,46,111,102,102,40,110,110,46,82,69,83,73,90,69,41,125,44,116,46,95,104,105,100,101,77,111,100,97,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,104,105,100,100,101,110,34,44,33,48,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,109,111,100,97,108,34,41,44,116,104,105,115,46,95,105,115,84,114,97,110,115,105,116,105,111,110,105,110,103,61,33,49,44,116,104,105,115,46,95,115,104,111,119,66,97,99,107,100,114,111,112,40,102,117,110,99,116,105,111,110,40,41,123,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,67,108,97,115,115,40,97,110,41,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,40,41,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,40,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,110,110,46,72,73,68,68,69,78,41,125,41,125,44,116,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,98,97,99,107,100,114,111,112,38,38,40,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,110,117,108,108,41,125,44,116,46,95,115,104,111,119,66,97,99,107,100,114,111,112,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,63,108,110,58,34,34,59,105,102,40,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,41,123,105,102,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,78,97,109,101,61,115,110,44,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,110,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,112,112,101,110,100,84,111,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,63,101,46,95,105,103,110,111,114,101,66,97,99,107,100,114,111,112,67,108,105,99,107,61,33,49,58,116,46,116,97,114,103,101,116,61,61,61,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,38,38,40,34,115,116,97,116,105,99,34,61,61,61,101,46,95,99,111,110,102,105,103,46,98,97,99,107,100,114,111,112,63,101,46,95,101,108,101,109,101,110,116,46,102,111,99,117,115,40,41,58,101,46,104,105,100,101,40,41,41,125,41,44,110,38,38,109,46,114,101,102,108,111,119,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,44,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,97,100,100,67,108,97,115,115,40,99,110,41,44,33,116,41,114,101,116,117,114,110,59,105,102,40,33,110,41,114,101,116,117,114,110,32,118,111,105,100,32,116,40,41,59,118,97,114,32,105,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,116,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,105,41,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,105,115,83,104,111,119,110,38,38,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,123,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,114,101,109,111,118,101,67,108,97,115,115,40,99,110,41,59,118,97,114,32,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,114,101,109,111,118,101,66,97,99,107,100,114,111,112,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,108,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,59,112,40,116,104,105,115,46,95,98,97,99,107,100,114,111,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,125,101,108,115,101,32,116,38,38,116,40,41,125,44,116,46,95,97,100,106,117,115,116,68,105,97,108,111,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,62,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,99,108,105,101,110,116,72,101,105,103,104,116,59,33,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,44,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,38,38,33,116,38,38,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,44,116,46,95,114,101,115,101,116,65,100,106,117,115,116,109,101,110,116,115,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,76,101,102,116,61,34,34,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,34,34,125,44,116,46,95,99,104,101,99,107,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,61,116,46,108,101,102,116,43,116,46,114,105,103,104,116,60,119,105,110,100,111,119,46,105,110,110,101,114,87,105,100,116,104,44,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,40,41,125,44,116,46,95,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,111,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,105,115,66,111,100,121,79,118,101,114,102,108,111,119,105,110,103,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,44,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,109,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,44,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,101,46,115,116,121,108,101,46,109,97,114,103,105,110,82,105,103,104,116,44,105,61,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,45,111,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,41,59,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,44,105,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,110,41,46,99,115,115,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,44,112,97,114,115,101,70,108,111,97,116,40,105,41,43,116,104,105,115,46,95,115,99,114,111,108,108,98,97,114,87,105,100,116,104,43,34,112,120,34,41,125,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,97,100,100,67,108,97,115,115,40,97,110,41,125,44,116,46,95,114,101,115,101,116,83,99,114,111,108,108,98,97,114,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,112,110,41,41,59,112,40,116,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,101,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,101,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,41,59,118,97,114,32,101,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,34,43,109,110,41,41,59,112,40,101,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,112,40,101,41,46,100,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,59,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,110,38,38,112,40,101,41,46,99,115,115,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,44,110,41,46,114,101,109,111,118,101,68,97,116,97,40,34,109,97,114,103,105,110,45,114,105,103,104,116,34,41,125,41,59,118,97,114,32,110,61,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,100,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,59,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,114,101,109,111,118,101,68,97,116,97,40,34,112,97,100,100,105,110,103,45,114,105,103,104,116,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,116,121,108,101,46,112,97,100,100,105,110,103,82,105,103,104,116,61,110,124,124,34,34,125,44,116,46,95,103,101,116,83,99,114,111,108,108,98,97,114,87,105,100,116,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,116,46,99,108,97,115,115,78,97,109,101,61,114,110,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,59,118,97,114,32,101,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,119,105,100,116,104,45,116,46,99,108,105,101,110,116,87,105,100,116,104,59,114,101,116,117,114,110,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,41,44,101,125,44,111,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,44,105,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,41,44,101,61,108,40,123,125,44,116,110,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,63,110,58,123,125,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,111,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,36,101,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,105,41,125,101,108,115,101,32,101,46,115,104,111,119,38,38,116,46,115,104,111,119,40,105,41,125,41,125,44,115,40,111,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,110,125,125,93,41,44,111,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,110,110,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,102,110,44,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,116,104,105,115,44,105,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,41,59,105,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,105,41,41,59,118,97,114,32,111,61,112,40,101,41,46,100,97,116,97,40,36,101,41,63,34,116,111,103,103,108,101,34,58,108,40,123,125,44,112,40,101,41,46,100,97,116,97,40,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,41,41,59,34,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,38,38,34,65,82,69,65,34,33,61,61,116,104,105,115,46,116,97,103,78,97,109,101,124,124,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,114,61,112,40,101,41,46,111,110,101,40,110,110,46,83,72,79,87,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,114,46,111,110,101,40,110,110,46,72,73,68,68,69,78,44,102,117,110,99,116,105,111,110,40,41,123,112,40,110,41,46,105,115,40,34,58,118,105,115,105,98,108,101,34,41,38,38,110,46,102,111,99,117,115,40,41,125,41,125,41,59,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,101,41,44,111,44,116,104,105,115,41,125,41,44,112,46,102,110,91,71,101,93,61,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,71,101,93,46,67,111,110,115,116,114,117,99,116,111,114,61,103,110,44,112,46,102,110,91,71,101,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,71,101,93,61,90,101,44,103,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,95,110,61,91,34,98,97,99,107,103,114,111,117,110,100,34,44,34,99,105,116,101,34,44,34,104,114,101,102,34,44,34,105,116,101,109,116,121,112,101,34,44,34,108,111,110,103,100,101,115,99,34,44,34,112,111,115,116,101,114,34,44,34,115,114,99,34,44,34,120,108,105,110,107,58,104,114,101,102,34,93,44,118,110,61,123,34,42,34,58,91,34,99,108,97,115,115,34,44,34,100,105,114,34,44,34,105,100,34,44,34,108,97,110,103,34,44,34,114,111,108,101,34,44,47,94,97,114,105,97,45,91,92,119,45,93,42,36,47,105,93,44,97,58,91,34,116,97,114,103,101,116,34,44,34,104,114,101,102,34,44,34,116,105,116,108,101,34,44,34,114,101,108,34,93,44,97,114,101,97,58,91,93,44,98,58,91,93,44,98,114,58,91,93,44,99,111,108,58,91,93,44,99,111,100,101,58,91,93,44,100,105,118,58,91,93,44,101,109,58,91,93,44,104,114,58,91,93,44,104,49,58,91,93,44,104,50,58,91,93,44,104,51,58,91,93,44,104,52,58,91,93,44,104,53,58,91,93,44,104,54,58,91,93,44,105,58,91,93,44,105,109,103,58,91,34,115,114,99,34,44,34,97,108,116,34,44,34,116,105,116,108,101,34,44,34,119,105,100,116,104,34,44,34,104,101,105,103,104,116,34,93,44,108,105,58,91,93,44,111,108,58,91,93,44,112,58,91,93,44,112,114,101,58,91,93,44,115,58,91,93,44,115,109,97,108,108,58,91,93,44,115,112,97,110,58,91,93,44,115,117,98,58,91,93,44,115,117,112,58,91,93,44,115,116,114,111,110,103,58,91,93,44,117,58,91,93,44,117,108,58,91,93,125,44,121,110,61,47,94,40,63,58,40,63,58,104,116,116,112,115,63,124,109,97,105,108,116,111,124,102,116,112,124,116,101,108,124,102,105,108,101,41,58,124,91,94,38,58,47,63,35,93,42,40,63,58,91,47,63,35,93,124,36,41,41,47,103,105,44,69,110,61,47,94,100,97,116,97,58,40,63,58,105,109,97,103,101,92,47,40,63,58,98,109,112,124,103,105,102,124,106,112,101,103,124,106,112,103,124,112,110,103,124,116,105,102,102,124,119,101,98,112,41,124,118,105,100,101,111,92,47,40,63,58,109,112,101,103,124,109,112,52,124,111,103,103,124,119,101,98,109,41,124,97,117,100,105,111,92,47,40,63,58,109,112,51,124,111,103,97,124,111,103,103,124,111,112,117,115,41,41,59,98,97,115,101,54,52,44,91,97,45,122,48,45,57,43,47,93,43,61,42,36,47,105,59,102,117,110,99,116,105,111,110,32,98,110,40,116,44,115,44,101,41,123,105,102,40,48,61,61,61,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,116,59,105,102,40,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,101,40,116,41,59,102,111,114,40,118,97,114,32,110,61,40,110,101,119,32,119,105,110,100,111,119,46,68,79,77,80,97,114,115,101,114,41,46,112,97,114,115,101,70,114,111,109,83,116,114,105,110,103,40,116,44,34,116,101,120,116,47,104,116,109,108,34,41,44,97,61,79,98,106,101,99,116,46,107,101,121,115,40,115,41,44,108,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,98,111,100,121,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,42,34,41,41,44,105,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,108,91,116,93,44,105,61,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,61,61,61,97,46,105,110,100,101,120,79,102,40,110,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,41,114,101,116,117,114,110,32,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,34,99,111,110,116,105,110,117,101,34,59,118,97,114,32,111,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,110,46,97,116,116,114,105,98,117,116,101,115,41,44,114,61,91,93,46,99,111,110,99,97,116,40,115,91,34,42,34,93,124,124,91,93,44,115,91,105,93,124,124,91,93,41,59,111,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,46,110,111,100,101,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,45,49,33,61,61,101,46,105,110,100,101,120,79,102,40,110,41,41,114,101,116,117,114,110,45,49,61,61,61,95,110,46,105,110,100,101,120,79,102,40,110,41,124,124,66,111,111,108,101,97,110,40,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,121,110,41,124,124,116,46,110,111,100,101,86,97,108,117,101,46,109,97,116,99,104,40,69,110,41,41,59,102,111,114,40,118,97,114,32,105,61,101,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,82,101,103,69,120,112,125,41,44,111,61,48,44,114,61,105,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,102,40,110,46,109,97,116,99,104,40,105,91,111,93,41,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,41,40,116,44,114,41,124,124,110,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,116,46,110,111,100,101,78,97,109,101,41,125,41,125,44,111,61,48,44,114,61,108,46,108,101,110,103,116,104,59,111,60,114,59,111,43,43,41,105,40,111,41,59,114,101,116,117,114,110,32,110,46,98,111,100,121,46,105,110,110,101,114,72,84,77,76,125,118,97,114,32,119,110,61,34,116,111,111,108,116,105,112,34,44,67,110,61,34,98,115,46,116,111,111,108,116,105,112,34,44,84,110,61,34,46,34,43,67,110,44,83,110,61,112,46,102,110,91,119,110,93,44,68,110,61,34,98,115,45,116,111,111,108,116,105,112,34,44,73,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,68,110,43,34,92,92,83,43,34,44,34,103,34,41,44,65,110,61,91,34,115,97,110,105,116,105,122,101,34,44,34,119,104,105,116,101,76,105,115,116,34,44,34,115,97,110,105,116,105,122,101,70,110,34,93,44,79,110,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,116,101,109,112,108,97,116,101,58,34,115,116,114,105,110,103,34,44,116,105,116,108,101,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,44,116,114,105,103,103,101,114,58,34,115,116,114,105,110,103,34,44,100,101,108,97,121,58,34,40,110,117,109,98,101,114,124,111,98,106,101,99,116,41,34,44,104,116,109,108,58,34,98,111,111,108,101,97,110,34,44,115,101,108,101,99,116,111,114,58,34,40,115,116,114,105,110,103,124,98,111,111,108,101,97,110,41,34,44,112,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,111,102,102,115,101,116,58,34,40,110,117,109,98,101,114,124,115,116,114,105,110,103,124,102,117,110,99,116,105,111,110,41,34,44,99,111,110,116,97,105,110,101,114,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,98,111,111,108,101,97,110,41,34,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,40,115,116,114,105,110,103,124,97,114,114,97,121,41,34,44,98,111,117,110,100,97,114,121,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,44,115,97,110,105,116,105,122,101,58,34,98,111,111,108,101,97,110,34,44,115,97,110,105,116,105,122,101,70,110,58,34,40,110,117,108,108,124,102,117,110,99,116,105,111,110,41,34,44,119,104,105,116,101,76,105,115,116,58,34,111,98,106,101,99,116,34,125,44,78,110,61,123,65,85,84,79,58,34,97,117,116,111,34,44,84,79,80,58,34,116,111,112,34,44,82,73,71,72,84,58,34,114,105,103,104,116,34,44,66,79,84,84,79,77,58,34,98,111,116,116,111,109,34,44,76,69,70,84,58,34,108,101,102,116,34,125,44,107,110,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,100,105,118,32,99,108,97,115,115,61,34,116,111,111,108,116,105,112,45,105,110,110,101,114,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,44,116,114,105,103,103,101,114,58,34,104,111,118,101,114,32,102,111,99,117,115,34,44,116,105,116,108,101,58,34,34,44,100,101,108,97,121,58,48,44,104,116,109,108,58,33,49,44,115,101,108,101,99,116,111,114,58,33,49,44,112,108,97,99,101,109,101,110,116,58,34,116,111,112,34,44,111,102,102,115,101,116,58,48,44,99,111,110,116,97,105,110,101,114,58,33,49,44,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,58,34,102,108,105,112,34,44,98,111,117,110,100,97,114,121,58,34,115,99,114,111,108,108,80,97,114,101,110,116,34,44,115,97,110,105,116,105,122,101,58,33,48,44,115,97,110,105,116,105,122,101,70,110,58,110,117,108,108,44,119,104,105,116,101,76,105,115,116,58,118,110,125,44,76,110,61,34,115,104,111,119,34,44,120,110,61,34,111,117,116,34,44,80,110,61,123,72,73,68,69,58,34,104,105,100,101,34,43,84,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,84,110,44,83,72,79,87,58,34,115,104,111,119,34,43,84,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,84,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,84,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,84,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,84,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,84,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,84,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,84,110,125,44,72,110,61,34,102,97,100,101,34,44,106,110,61,34,115,104,111,119,34,44,82,110,61,34,46,116,111,111,108,116,105,112,45,105,110,110,101,114,34,44,70,110,61,34,46,97,114,114,111,119,34,44,77,110,61,34,104,111,118,101,114,34,44,87,110,61,34,102,111,99,117,115,34,44,85,110,61,34,99,108,105,99,107,34,44,66,110,61,34,109,97,110,117,97,108,34,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,98,101,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,116,111,111,108,116,105,112,115,32,114,101,113,117,105,114,101,32,80,111,112,112,101,114,46,106,115,32,40,104,116,116,112,115,58,47,47,112,111,112,112,101,114,46,106,115,46,111,114,103,47,41,34,41,59,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,48,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,123,125,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,116,105,112,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,101,110,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,48,125,44,116,46,100,105,115,97,98,108,101,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,49,125,44,116,46,116,111,103,103,108,101,69,110,97,98,108,101,100,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,33,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,125,44,116,46,116,111,103,103,108,101,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,105,102,40,116,41,123,118,97,114,32,101,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,110,61,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,41,59,110,124,124,40,110,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,101,44,110,41,41,44,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,61,33,110,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,46,99,108,105,99,107,44,110,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,63,110,46,95,101,110,116,101,114,40,110,117,108,108,44,110,41,58,110,46,95,108,101,97,118,101,40,110,117,108,108,44,110,41,125,101,108,115,101,123,105,102,40,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,41,114,101,116,117,114,110,32,118,111,105,100,32,116,104,105,115,46,95,108,101,97,118,101,40,110,117,108,108,44,116,104,105,115,41,59,116,104,105,115,46,95,101,110,116,101,114,40,110,117,108,108,44,116,104,105,115,41,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,101,108,101,109,101,110,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,111,102,102,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,86,69,78,84,95,75,69,89,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,102,102,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,41,44,116,104,105,115,46,116,105,112,38,38,112,40,116,104,105,115,46,116,105,112,41,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,61,110,117,108,108,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,61,110,117,108,108,41,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,117,108,108,44,116,104,105,115,46,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,116,105,112,61,110,117,108,108,125,44,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,105,102,40,34,110,111,110,101,34,61,61,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,115,115,40,34,100,105,115,112,108,97,121,34,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,80,108,101,97,115,101,32,117,115,101,32,115,104,111,119,32,111,110,32,118,105,115,105,98,108,101,32,101,108,101,109,101,110,116,115,34,41,59,118,97,114,32,116,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,41,59,105,102,40,116,104,105,115,46,105,115,87,105,116,104,67,111,110,116,101,110,116,40,41,38,38,116,104,105,115,46,95,105,115,69,110,97,98,108,101,100,41,123,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,41,59,118,97,114,32,110,61,109,46,102,105,110,100,83,104,97,100,111,119,82,111,111,116,40,116,104,105,115,46,101,108,101,109,101,110,116,41,44,105,61,112,46,99,111,110,116,97,105,110,115,40,110,117,108,108,33,61,61,110,63,110,58,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,101,108,101,109,101,110,116,41,59,105,102,40,116,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,124,124,33,105,41,114,101,116,117,114,110,59,118,97,114,32,111,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,114,61,109,46,103,101,116,85,73,68,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,78,65,77,69,41,59,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,105,100,34,44,114,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,44,114,41,44,116,104,105,115,46,115,101,116,67,111,110,116,101,110,116,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,112,40,111,41,46,97,100,100,67,108,97,115,115,40,72,110,41,59,118,97,114,32,115,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,63,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,46,99,97,108,108,40,116,104,105,115,44,111,44,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,112,108,97,99,101,109,101,110,116,44,97,61,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,115,41,59,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,97,41,59,118,97,114,32,108,61,116,104,105,115,46,95,103,101,116,67,111,110,116,97,105,110,101,114,40,41,59,112,40,111,41,46,100,97,116,97,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,44,116,104,105,115,41,44,112,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,101,108,101,109,101,110,116,46,111,119,110,101,114,68,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,44,116,104,105,115,46,116,105,112,41,124,124,112,40,111,41,46,97,112,112,101,110,100,84,111,40,108,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,73,78,83,69,82,84,69,68,41,44,116,104,105,115,46,95,112,111,112,112,101,114,61,110,101,119,32,98,101,40,116,104,105,115,46,101,108,101,109,101,110,116,44,111,44,123,112,108,97,99,101,109,101,110,116,58,97,44,109,111,100,105,102,105,101,114,115,58,123,111,102,102,115,101,116,58,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,40,41,44,102,108,105,112,58,123,98,101,104,97,118,105,111,114,58,116,104,105,115,46,99,111,110,102,105,103,46,102,97,108,108,98,97,99,107,80,108,97,99,101,109,101,110,116,125,44,97,114,114,111,119,58,123,101,108,101,109,101,110,116,58,70,110,125,44,112,114,101,118,101,110,116,79,118,101,114,102,108,111,119,58,123,98,111,117,110,100,97,114,105,101,115,69,108,101,109,101,110,116,58,116,104,105,115,46,99,111,110,102,105,103,46,98,111,117,110,100,97,114,121,125,125,44,111,110,67,114,101,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,116,46,111,114,105,103,105,110,97,108,80,108,97,99,101,109,101,110,116,33,61,61,116,46,112,108,97,99,101,109,101,110,116,38,38,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,44,111,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,40,116,41,125,125,41,44,112,40,111,41,46,97,100,100,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,110,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,59,118,97,114,32,99,61,102,117,110,99,116,105,111,110,40,41,123,101,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,101,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,40,41,59,118,97,114,32,116,61,101,46,95,104,111,118,101,114,83,116,97,116,101,59,101,46,95,104,111,118,101,114,83,116,97,116,101,61,110,117,108,108,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,83,72,79,87,78,41,44,116,61,61,61,120,110,38,38,101,46,95,108,101,97,118,101,40,110,117,108,108,44,101,41,125,59,105,102,40,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,104,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,116,105,112,41,59,112,40,116,104,105,115,46,116,105,112,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,99,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,104,41,125,101,108,115,101,32,99,40,41,125,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,44,110,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,105,61,112,46,69,118,101,110,116,40,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,69,41,44,111,61,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,33,61,61,76,110,38,38,110,46,112,97,114,101,110,116,78,111,100,101,38,38,110,46,112,97,114,101,110,116,78,111,100,101,46,114,101,109,111,118,101,67,104,105,108,100,40,110,41,44,101,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,101,46,101,108,101,109,101,110,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,100,101,115,99,114,105,98,101,100,98,121,34,41,44,112,40,101,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,72,73,68,68,69,78,41,44,110,117,108,108,33,61,61,101,46,95,112,111,112,112,101,114,38,38,101,46,95,112,111,112,112,101,114,46,100,101,115,116,114,111,121,40,41,44,116,38,38,116,40,41,125,59,105,102,40,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,105,41,44,33,105,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,105,102,40,112,40,110,41,46,114,101,109,111,118,101,67,108,97,115,115,40,106,110,41,44,34,111,110,116,111,117,99,104,115,116,97,114,116,34,105,110,32,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,38,38,112,40,100,111,99,117,109,101,110,116,46,98,111,100,121,41,46,99,104,105,108,100,114,101,110,40,41,46,111,102,102,40,34,109,111,117,115,101,111,118,101,114,34,44,110,117,108,108,44,112,46,110,111,111,112,41,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,85,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,87,110,93,61,33,49,44,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,77,110,93,61,33,49,44,112,40,116,104,105,115,46,116,105,112,41,46,104,97,115,67,108,97,115,115,40,72,110,41,41,123,118,97,114,32,114,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,110,41,59,112,40,110,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,111,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,114,41,125,101,108,115,101,32,111,40,41,59,116,104,105,115,46,95,104,111,118,101,114,83,116,97,116,101,61,34,34,125,125,44,116,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,95,112,111,112,112,101,114,38,38,116,104,105,115,46,95,112,111,112,112,101,114,46,115,99,104,101,100,117,108,101,85,112,100,97,116,101,40,41,125,44,116,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,125,44,116,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,68,110,43,34,45,34,43,116,41,125,44,116,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,116,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,112,40,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,82,110,41,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,44,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,43,34,32,34,43,106,110,41,125,44,116,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,101,124,124,33,101,46,110,111,100,101,84,121,112,101,38,38,33,101,46,106,113,117,101,114,121,63,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,40,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,38,38,40,101,61,98,110,40,101,44,116,104,105,115,46,99,111,110,102,105,103,46,119,104,105,116,101,76,105,115,116,44,116,104,105,115,46,99,111,110,102,105,103,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,46,104,116,109,108,40,101,41,41,58,116,46,116,101,120,116,40,101,41,58,116,104,105,115,46,99,111,110,102,105,103,46,104,116,109,108,63,112,40,101,41,46,112,97,114,101,110,116,40,41,46,105,115,40,116,41,124,124,116,46,101,109,112,116,121,40,41,46,97,112,112,101,110,100,40,101,41,58,116,46,116,101,120,116,40,112,40,101,41,46,116,101,120,116,40,41,41,125,44,116,46,103,101,116,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,114,101,116,117,114,110,32,116,124,124,40,116,61,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,63,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,58,116,104,105,115,46,99,111,110,102,105,103,46,116,105,116,108,101,41,44,116,125,44,116,46,95,103,101,116,79,102,102,115,101,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,123,125,59,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,63,116,46,102,110,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,111,102,102,115,101,116,115,61,108,40,123,125,44,116,46,111,102,102,115,101,116,115,44,101,46,99,111,110,102,105,103,46,111,102,102,115,101,116,40,116,46,111,102,102,115,101,116,115,44,101,46,101,108,101,109,101,110,116,41,124,124,123,125,41,44,116,125,58,116,46,111,102,102,115,101,116,61,116,104,105,115,46,99,111,110,102,105,103,46,111,102,102,115,101,116,44,116,125,44,116,46,95,103,101,116,67,111,110,116,97,105,110,101,114,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,61,61,61,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,63,100,111,99,117,109,101,110,116,46,98,111,100,121,58,109,46,105,115,69,108,101,109,101,110,116,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,63,112,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,58,112,40,100,111,99,117,109,101,110,116,41,46,102,105,110,100,40,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,97,105,110,101,114,41,125,44,116,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,78,110,91,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,93,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,105,61,116,104,105,115,59,116,104,105,115,46,99,111,110,102,105,103,46,116,114,105,103,103,101,114,46,115,112,108,105,116,40,34,32,34,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,99,108,105,99,107,34,61,61,61,116,41,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,67,76,73,67,75,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,116,111,103,103,108,101,40,116,41,125,41,59,101,108,115,101,32,105,102,40,116,33,61,61,66,110,41,123,118,97,114,32,101,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,69,78,84,69,82,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,73,78,44,110,61,116,61,61,61,77,110,63,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,77,79,85,83,69,76,69,65,86,69,58,105,46,99,111,110,115,116,114,117,99,116,111,114,46,69,118,101,110,116,46,70,79,67,85,83,79,85,84,59,112,40,105,46,101,108,101,109,101,110,116,41,46,111,110,40,101,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,101,110,116,101,114,40,116,41,125,41,46,111,110,40,110,44,105,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,105,46,95,108,101,97,118,101,40,116,41,125,41,125,125,41,44,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,34,46,109,111,100,97,108,34,41,46,111,110,40,34,104,105,100,101,46,98,115,46,109,111,100,97,108,34,44,102,117,110,99,116,105,111,110,40,41,123,105,46,101,108,101,109,101,110,116,38,38,105,46,104,105,100,101,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,111,114,63,116,104,105,115,46,99,111,110,102,105,103,61,108,40,123,125,44,116,104,105,115,46,99,111,110,102,105,103,44,123,116,114,105,103,103,101,114,58,34,109,97,110,117,97,108,34,44,115,101,108,101,99,116,111,114,58,34,34,125,41,58,116,104,105,115,46,95,102,105,120,84,105,116,108,101,40,41,125,44,116,46,95,102,105,120,84,105,116,108,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,41,59,40,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,115,116,114,105,110,103,34,33,61,61,116,41,38,38,40,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,111,114,105,103,105,110,97,108,45,116,105,116,108,101,34,44,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,41,124,124,34,34,41,44,116,104,105,115,46,101,108,101,109,101,110,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,34,34,41,41,125,44,116,46,95,101,110,116,101,114,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,105,110,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,48,41,44,112,40,101,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,104,97,115,67,108,97,115,115,40,106,110,41,124,124,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,63,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,58,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,76,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,76,110,38,38,101,46,115,104,111,119,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,115,104,111,119,41,58,101,46,115,104,111,119,40,41,41,125,44,116,46,95,108,101,97,118,101,61,102,117,110,99,116,105,111,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,65,84,65,95,75,69,89,59,40,101,61,101,124,124,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,41,41,124,124,40,101,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,44,116,104,105,115,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,40,41,41,44,112,40,116,46,99,117,114,114,101,110,116,84,97,114,103,101,116,41,46,100,97,116,97,40,110,44,101,41,41,44,116,38,38,40,101,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,34,102,111,99,117,115,111,117,116,34,61,61,61,116,46,116,121,112,101,63,87,110,58,77,110,93,61,33,49,41,44,101,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,40,41,124,124,40,99,108,101,97,114,84,105,109,101,111,117,116,40,101,46,95,116,105,109,101,111,117,116,41,44,101,46,95,104,111,118,101,114,83,116,97,116,101,61,120,110,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,38,38,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,63,101,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,104,111,118,101,114,83,116,97,116,101,61,61,61,120,110,38,38,101,46,104,105,100,101,40,41,125,44,101,46,99,111,110,102,105,103,46,100,101,108,97,121,46,104,105,100,101,41,58,101,46,104,105,100,101,40,41,41,125,44,116,46,95,105,115,87,105,116,104,65,99,116,105,118,101,84,114,105,103,103,101,114,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,32,105,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,41,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,114,105,103,103,101,114,91,116,93,41,114,101,116,117,114,110,33,48,59,114,101,116,117,114,110,33,49,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,112,40,116,104,105,115,46,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,101,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,45,49,33,61,61,65,110,46,105,110,100,101,120,79,102,40,116,41,38,38,100,101,108,101,116,101,32,101,91,116,93,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,44,101,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,100,101,108,97,121,38,38,40,116,46,100,101,108,97,121,61,123,115,104,111,119,58,116,46,100,101,108,97,121,44,104,105,100,101,58,116,46,100,101,108,97,121,125,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,116,105,116,108,101,38,38,40,116,46,116,105,116,108,101,61,116,46,116,105,116,108,101,46,116,111,83,116,114,105,110,103,40,41,41,44,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,116,46,99,111,110,116,101,110,116,38,38,40,116,46,99,111,110,116,101,110,116,61,116,46,99,111,110,116,101,110,116,46,116,111,83,116,114,105,110,103,40,41,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,119,110,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,46,115,97,110,105,116,105,122,101,38,38,40,116,46,116,101,109,112,108,97,116,101,61,98,110,40,116,46,116,101,109,112,108,97,116,101,44,116,46,119,104,105,116,101,76,105,115,116,44,116,46,115,97,110,105,116,105,122,101,70,110,41,41,44,116,125,44,116,46,95,103,101,116,68,101,108,101,103,97,116,101,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,123,125,59,105,102,40,116,104,105,115,46,99,111,110,102,105,103,41,102,111,114,40,118,97,114,32,101,32,105,110,32,116,104,105,115,46,99,111,110,102,105,103,41,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,91,101,93,33,61,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,38,38,40,116,91,101,93,61,116,104,105,115,46,99,111,110,102,105,103,91,101,93,41,59,114,101,116,117,114,110,32,116,125,44,116,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,73,110,41,59,110,117,108,108,33,61,61,101,38,38,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,116,46,95,104,97,110,100,108,101,80,111,112,112,101,114,80,108,97,99,101,109,101,110,116,67,104,97,110,103,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,46,105,110,115,116,97,110,99,101,59,116,104,105,115,46,116,105,112,61,101,46,112,111,112,112,101,114,44,116,104,105,115,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,40,41,44,116,104,105,115,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,40,116,104,105,115,46,95,103,101,116,65,116,116,97,99,104,109,101,110,116,40,116,46,112,108,97,99,101,109,101,110,116,41,41,125,44,116,46,95,102,105,120,84,114,97,110,115,105,116,105,111,110,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,44,101,61,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,59,110,117,108,108,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,120,45,112,108,97,99,101,109,101,110,116,34,41,38,38,40,112,40,116,41,46,114,101,109,111,118,101,67,108,97,115,115,40,72,110,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,33,49,44,116,104,105,115,46,104,105,100,101,40,41,44,116,104,105,115,46,115,104,111,119,40,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,61,101,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,67,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,107,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,80,110,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,84,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,110,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,119,110,93,61,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,119,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,113,110,44,112,46,102,110,91,119,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,119,110,93,61,83,110,44,113,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,75,110,61,34,112,111,112,111,118,101,114,34,44,81,110,61,34,98,115,46,112,111,112,111,118,101,114,34,44,86,110,61,34,46,34,43,81,110,44,89,110,61,112,46,102,110,91,75,110,93,44,122,110,61,34,98,115,45,112,111,112,111,118,101,114,34,44,88,110,61,110,101,119,32,82,101,103,69,120,112,40,34,40,94,124,92,92,115,41,34,43,122,110,43,34,92,92,83,43,34,44,34,103,34,41,44,71,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,44,123,112,108,97,99,101,109,101,110,116,58,34,114,105,103,104,116,34,44,116,114,105,103,103,101,114,58,34,99,108,105,99,107,34,44,99,111,110,116,101,110,116,58,34,34,44,116,101,109,112,108,97,116,101,58,39,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,34,32,114,111,108,101,61,34,116,111,111,108,116,105,112,34,62,60,100,105,118,32,99,108,97,115,115,61,34,97,114,114,111,119,34,62,60,47,100,105,118,62,60,104,51,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,62,60,47,104,51,62,60,100,105,118,32,99,108,97,115,115,61,34,112,111,112,111,118,101,114,45,98,111,100,121,34,62,60,47,100,105,118,62,60,47,100,105,118,62,39,125,41,44,36,110,61,108,40,123,125,44,113,110,46,68,101,102,97,117,108,116,84,121,112,101,44,123,99,111,110,116,101,110,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,124,102,117,110,99,116,105,111,110,41,34,125,41,44,74,110,61,34,102,97,100,101,34,44,90,110,61,34,115,104,111,119,34,44,116,105,61,34,46,112,111,112,111,118,101,114,45,104,101,97,100,101,114,34,44,101,105,61,34,46,112,111,112,111,118,101,114,45,98,111,100,121,34,44,110,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,86,110,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,86,110,44,83,72,79,87,58,34,115,104,111,119,34,43,86,110,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,86,110,44,73,78,83,69,82,84,69,68,58,34,105,110,115,101,114,116,101,100,34,43,86,110,44,67,76,73,67,75,58,34,99,108,105,99,107,34,43,86,110,44,70,79,67,85,83,73,78,58,34,102,111,99,117,115,105,110,34,43,86,110,44,70,79,67,85,83,79,85,84,58,34,102,111,99,117,115,111,117,116,34,43,86,110,44,77,79,85,83,69,69,78,84,69,82,58,34,109,111,117,115,101,101,110,116,101,114,34,43,86,110,44,77,79,85,83,69,76,69,65,86,69,58,34,109,111,117,115,101,108,101,97,118,101,34,43,86,110,125,44,105,105,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,59,102,117,110,99,116,105,111,110,32,105,40,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,124,124,116,104,105,115,125,110,61,116,44,40,101,61,105,41,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,110,46,112,114,111,116,111,116,121,112,101,41,44,40,101,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,101,41,46,95,95,112,114,111,116,111,95,95,61,110,59,118,97,114,32,111,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,111,46,105,115,87,105,116,104,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,124,124,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,125,44,111,46,97,100,100,65,116,116,97,99,104,109,101,110,116,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,116,41,123,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,46,97,100,100,67,108,97,115,115,40,122,110,43,34,45,34,43,116,41,125,44,111,46,103,101,116,84,105,112,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,105,112,61,116,104,105,115,46,116,105,112,124,124,112,40,116,104,105,115,46,99,111,110,102,105,103,46,116,101,109,112,108,97,116,101,41,91,48,93,44,116,104,105,115,46,116,105,112,125,44,111,46,115,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,59,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,116,105,41,44,116,104,105,115,46,103,101,116,84,105,116,108,101,40,41,41,59,118,97,114,32,101,61,116,104,105,115,46,95,103,101,116,67,111,110,116,101,110,116,40,41,59,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,38,38,40,101,61,101,46,99,97,108,108,40,116,104,105,115,46,101,108,101,109,101,110,116,41,41,44,116,104,105,115,46,115,101,116,69,108,101,109,101,110,116,67,111,110,116,101,110,116,40,116,46,102,105,110,100,40,101,105,41,44,101,41,44,116,46,114,101,109,111,118,101,67,108,97,115,115,40,74,110,43,34,32,34,43,90,110,41,125,44,111,46,95,103,101,116,67,111,110,116,101,110,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,108,101,109,101,110,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,99,111,110,116,101,110,116,34,41,124,124,116,104,105,115,46,99,111,110,102,105,103,46,99,111,110,116,101,110,116,125,44,111,46,95,99,108,101,97,110,84,105,112,67,108,97,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,46,103,101,116,84,105,112,69,108,101,109,101,110,116,40,41,41,44,101,61,116,46,97,116,116,114,40,34,99,108,97,115,115,34,41,46,109,97,116,99,104,40,88,110,41,59,110,117,108,108,33,61,61,101,38,38,48,60,101,46,108,101,110,103,116,104,38,38,116,46,114,101,109,111,118,101,67,108,97,115,115,40,101,46,106,111,105,110,40,34,34,41,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,41,44,101,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,63,110,58,110,117,108,108,59,105,102,40,40,116,124,124,33,47,100,105,115,112,111,115,101,124,104,105,100,101,47,46,116,101,115,116,40,110,41,41,38,38,40,116,124,124,40,116,61,110,101,119,32,105,40,116,104,105,115,44,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,81,110,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,116,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,110,125,125,44,123,107,101,121,58,34,78,65,77,69,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,75,110,125,125,44,123,107,101,121,58,34,68,65,84,65,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,81,110,125,125,44,123,107,101,121,58,34,69,118,101,110,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,105,125,125,44,123,107,101,121,58,34,69,86,69,78,84,95,75,69,89,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,86,110,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,125,125,93,41,44,105,125,40,113,110,41,59,112,46,102,110,91,75,110,93,61,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,75,110,93,46,67,111,110,115,116,114,117,99,116,111,114,61,105,105,44,112,46,102,110,91,75,110,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,75,110,93,61,89,110,44,105,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,111,105,61,34,115,99,114,111,108,108,115,112,121,34,44,114,105,61,34,98,115,46,115,99,114,111,108,108,115,112,121,34,44,115,105,61,34,46,34,43,114,105,44,97,105,61,112,46,102,110,91,111,105,93,44,108,105,61,123,111,102,102,115,101,116,58,49,48,44,109,101,116,104,111,100,58,34,97,117,116,111,34,44,116,97,114,103,101,116,58,34,34,125,44,99,105,61,123,111,102,102,115,101,116,58,34,110,117,109,98,101,114,34,44,109,101,116,104,111,100,58,34,115,116,114,105,110,103,34,44,116,97,114,103,101,116,58,34,40,115,116,114,105,110,103,124,101,108,101,109,101,110,116,41,34,125,44,104,105,61,123,65,67,84,73,86,65,84,69,58,34,97,99,116,105,118,97,116,101,34,43,115,105,44,83,67,82,79,76,76,58,34,115,99,114,111,108,108,34,43,115,105,44,76,79,65,68,95,68,65,84,65,95,65,80,73,58,34,108,111,97,100,34,43,115,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,117,105,61,34,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,102,105,61,34,97,99,116,105,118,101,34,44,100,105,61,39,91,100,97,116,97,45,115,112,121,61,34,115,99,114,111,108,108,34,93,39,44,112,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,109,105,61,34,46,110,97,118,45,108,105,110,107,34,44,103,105,61,34,46,110,97,118,45,105,116,101,109,34,44,95,105,61,34,46,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,34,44,118,105,61,34,46,100,114,111,112,100,111,119,110,34,44,121,105,61,34,46,100,114,111,112,100,111,119,110,45,105,116,101,109,34,44,69,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,98,105,61,34,111,102,102,115,101,116,34,44,119,105,61,34,112,111,115,105,116,105,111,110,34,44,67,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,101,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,34,66,79,68,89,34,61,61,61,116,46,116,97,103,78,97,109,101,63,119,105,110,100,111,119,58,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,109,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,95,105,43,34,44,34,43,116,104,105,115,46,95,99,111,110,102,105,103,46,116,97,114,103,101,116,43,34,32,34,43,121,105,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,48,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,110,40,104,105,46,83,67,82,79,76,76,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,95,112,114,111,99,101,115,115,40,116,41,125,41,44,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,116,104,105,115,46,95,112,114,111,99,101,115,115,40,41,125,118,97,114,32,116,61,110,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,114,101,102,114,101,115,104,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,44,116,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,119,105,110,100,111,119,63,98,105,58,119,105,44,111,61,34,97,117,116,111,34,61,61,61,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,63,116,58,116,104,105,115,46,95,99,111,110,102,105,103,46,109,101,116,104,111,100,44,114,61,111,61,61,61,119,105,63,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,58,48,59,116,104,105,115,46,95,111,102,102,115,101,116,115,61,91,93,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,44,110,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,41,59,105,102,40,110,38,38,40,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,110,41,41,44,101,41,123,118,97,114,32,105,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,119,105,100,116,104,124,124,105,46,104,101,105,103,104,116,41,114,101,116,117,114,110,91,112,40,101,41,91,111,93,40,41,46,116,111,112,43,114,44,110,93,125,114,101,116,117,114,110,32,110,117,108,108,125,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,125,41,46,115,111,114,116,40,102,117,110,99,116,105,111,110,40,116,44,101,41,123,114,101,116,117,114,110,32,116,91,48,93,45,101,91,48,93,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,95,111,102,102,115,101,116,115,46,112,117,115,104,40,116,91,48,93,41,44,101,46,95,116,97,114,103,101,116,115,46,112,117,115,104,40,116,91,49,93,41,125,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,114,105,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,111,102,102,40,115,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,44,116,104,105,115,46,95,115,101,108,101,99,116,111,114,61,110,117,108,108,44,116,104,105,115,46,95,111,102,102,115,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,116,97,114,103,101,116,115,61,110,117,108,108,44,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,40,116,61,108,40,123,125,44,108,105,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,41,46,116,97,114,103,101,116,41,123,118,97,114,32,101,61,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,41,59,101,124,124,40,101,61,109,46,103,101,116,85,73,68,40,111,105,41,44,112,40,116,46,116,97,114,103,101,116,41,46,97,116,116,114,40,34,105,100,34,44,101,41,41,44,116,46,116,97,114,103,101,116,61,34,35,34,43,101,125,114,101,116,117,114,110,32,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,111,105,44,116,44,99,105,41,44,116,125,44,116,46,95,103,101,116,83,99,114,111,108,108,84,111,112,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,112,97,103,101,89,79,102,102,115,101,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,125,44,116,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,124,124,77,97,116,104,46,109,97,120,40,100,111,99,117,109,101,110,116,46,98,111,100,121,46,115,99,114,111,108,108,72,101,105,103,104,116,44,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,72,101,105,103,104,116,41,125,44,116,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,61,61,61,119,105,110,100,111,119,63,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,58,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,104,101,105,103,104,116,125,44,116,46,95,112,114,111,99,101,115,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,84,111,112,40,41,43,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,44,101,61,116,104,105,115,46,95,103,101,116,83,99,114,111,108,108,72,101,105,103,104,116,40,41,44,110,61,116,104,105,115,46,95,99,111,110,102,105,103,46,111,102,102,115,101,116,43,101,45,116,104,105,115,46,95,103,101,116,79,102,102,115,101,116,72,101,105,103,104,116,40,41,59,105,102,40,116,104,105,115,46,95,115,99,114,111,108,108,72,101,105,103,104,116,33,61,61,101,38,38,116,104,105,115,46,114,101,102,114,101,115,104,40,41,44,110,60,61,116,41,123,118,97,114,32,105,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,116,104,105,115,46,95,116,97,114,103,101,116,115,46,108,101,110,103,116,104,45,49,93,59,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,105,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,105,41,125,101,108,115,101,123,105,102,40,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,38,38,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,38,38,48,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,48,93,41,114,101,116,117,114,110,32,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,110,117,108,108,44,118,111,105,100,32,116,104,105,115,46,95,99,108,101,97,114,40,41,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,111,102,102,115,101,116,115,46,108,101,110,103,116,104,59,111,45,45,59,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,33,61,61,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,38,38,116,62,61,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,93,38,38,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,124,124,116,60,116,104,105,115,46,95,111,102,102,115,101,116,115,91,111,43,49,93,41,38,38,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,116,97,114,103,101,116,115,91,111,93,41,125,125,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,95,97,99,116,105,118,101,84,97,114,103,101,116,61,101,44,116,104,105,115,46,95,99,108,101,97,114,40,41,59,118,97,114,32,116,61,116,104,105,115,46,95,115,101,108,101,99,116,111,114,46,115,112,108,105,116,40,34,44,34,41,46,109,97,112,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,43,39,91,100,97,116,97,45,116,97,114,103,101,116,61,34,39,43,101,43,39,34,93,44,39,43,116,43,39,91,104,114,101,102,61,34,39,43,101,43,39,34,93,39,125,41,44,110,61,112,40,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,46,106,111,105,110,40,34,44,34,41,41,41,41,59,110,46,104,97,115,67,108,97,115,115,40,117,105,41,63,40,110,46,99,108,111,115,101,115,116,40,118,105,41,46,102,105,110,100,40,69,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,97,100,100,67,108,97,115,115,40,102,105,41,41,58,40,110,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,109,105,43,34,44,32,34,43,95,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,44,110,46,112,97,114,101,110,116,115,40,112,105,41,46,112,114,101,118,40,103,105,41,46,99,104,105,108,100,114,101,110,40,109,105,41,46,97,100,100,67,108,97,115,115,40,102,105,41,41,44,112,40,116,104,105,115,46,95,115,99,114,111,108,108,69,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,104,105,46,65,67,84,73,86,65,84,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,101,125,41,125,44,116,46,95,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,116,104,105,115,46,95,115,101,108,101,99,116,111,114,41,41,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,102,105,41,125,41,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,102,105,41,125,41,125,44,110,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,41,59,105,102,40,116,124,124,40,116,61,110,101,119,32,110,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,41,44,112,40,116,104,105,115,41,46,100,97,116,97,40,114,105,44,116,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,116,91,101,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,101,43,39,34,39,41,59,116,91,101,93,40,41,125,125,41,125,44,115,40,110,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,108,105,125,125,93,41,44,110,125,40,41,59,112,40,119,105,110,100,111,119,41,46,111,110,40,104,105,46,76,79,65,68,95,68,65,84,65,95,65,80,73,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,116,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,100,105,41,41,44,101,61,116,46,108,101,110,103,116,104,59,101,45,45,59,41,123,118,97,114,32,110,61,112,40,116,91,101,93,41,59,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,110,44,110,46,100,97,116,97,40,41,41,125,125,41,44,112,46,102,110,91,111,105,93,61,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,111,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,67,105,44,112,46,102,110,91,111,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,111,105,93,61,97,105,44,67,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,84,105,61,34,98,115,46,116,97,98,34,44,83,105,61,34,46,34,43,84,105,44,68,105,61,112,46,102,110,46,116,97,98,44,73,105,61,123,72,73,68,69,58,34,104,105,100,101,34,43,83,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,83,105,44,83,72,79,87,58,34,115,104,111,119,34,43,83,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,83,105,44,67,76,73,67,75,95,68,65,84,65,95,65,80,73,58,34,99,108,105,99,107,34,43,83,105,43,34,46,100,97,116,97,45,97,112,105,34,125,44,65,105,61,34,100,114,111,112,100,111,119,110,45,109,101,110,117,34,44,79,105,61,34,97,99,116,105,118,101,34,44,78,105,61,34,100,105,115,97,98,108,101,100,34,44,107,105,61,34,102,97,100,101,34,44,76,105,61,34,115,104,111,119,34,44,120,105,61,34,46,100,114,111,112,100,111,119,110,34,44,80,105,61,34,46,110,97,118,44,32,46,108,105,115,116,45,103,114,111,117,112,34,44,72,105,61,34,46,97,99,116,105,118,101,34,44,106,105,61,34,62,32,108,105,32,62,32,46,97,99,116,105,118,101,34,44,82,105,61,39,91,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,112,105,108,108,34,93,44,32,91,100,97,116,97,45,116,111,103,103,108,101,61,34,108,105,115,116,34,93,39,44,70,105,61,34,46,100,114,111,112,100,111,119,110,45,116,111,103,103,108,101,34,44,77,105,61,34,62,32,46,100,114,111,112,100,111,119,110,45,109,101,110,117,32,46,97,99,116,105,118,101,34,44,87,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,33,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,112,97,114,101,110,116,78,111,100,101,46,110,111,100,101,84,121,112,101,61,61,61,78,111,100,101,46,69,76,69,77,69,78,84,95,78,79,68,69,38,38,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,79,105,41,124,124,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,104,97,115,67,108,97,115,115,40,78,105,41,41,41,123,118,97,114,32,116,44,105,44,101,61,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,99,108,111,115,101,115,116,40,80,105,41,91,48,93,44,111,61,109,46,103,101,116,83,101,108,101,99,116,111,114,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,105,102,40,101,41,123,118,97,114,32,114,61,34,85,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,124,124,34,79,76,34,61,61,61,101,46,110,111,100,101,78,97,109,101,63,106,105,58,72,105,59,105,61,40,105,61,112,46,109,97,107,101,65,114,114,97,121,40,112,40,101,41,46,102,105,110,100,40,114,41,41,41,91,105,46,108,101,110,103,116,104,45,49,93,125,118,97,114,32,115,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,69,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,116,104,105,115,46,95,101,108,101,109,101,110,116,125,41,44,97,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,105,102,40,105,38,38,112,40,105,41,46,116,114,105,103,103,101,114,40,115,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,97,41,44,33,97,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,38,38,33,115,46,105,115,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,40,41,41,123,111,38,38,40,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,111,41,41,44,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,101,41,59,118,97,114,32,108,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,46,69,118,101,110,116,40,73,105,46,72,73,68,68,69,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,110,46,95,101,108,101,109,101,110,116,125,41,44,101,61,112,46,69,118,101,110,116,40,73,105,46,83,72,79,87,78,44,123,114,101,108,97,116,101,100,84,97,114,103,101,116,58,105,125,41,59,112,40,105,41,46,116,114,105,103,103,101,114,40,116,41,44,112,40,110,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,101,41,125,59,116,63,116,104,105,115,46,95,97,99,116,105,118,97,116,101,40,116,44,116,46,112,97,114,101,110,116,78,111,100,101,44,108,41,58,108,40,41,125,125,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,84,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,125,44,116,46,95,97,99,116,105,118,97,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,111,61,40,33,101,124,124,34,85,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,38,38,34,79,76,34,33,61,61,101,46,110,111,100,101,78,97,109,101,63,112,40,101,41,46,99,104,105,108,100,114,101,110,40,72,105,41,58,112,40,101,41,46,102,105,110,100,40,106,105,41,41,91,48,93,44,114,61,110,38,38,111,38,38,112,40,111,41,46,104,97,115,67,108,97,115,115,40,107,105,41,44,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,105,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,40,116,44,111,44,110,41,125,59,105,102,40,111,38,38,114,41,123,118,97,114,32,97,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,111,41,59,112,40,111,41,46,114,101,109,111,118,101,67,108,97,115,115,40,76,105,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,115,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,97,41,125,101,108,115,101,32,115,40,41,125,44,116,46,95,116,114,97,110,115,105,116,105,111,110,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,116,44,101,44,110,41,123,105,102,40,101,41,123,112,40,101,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,59,118,97,114,32,105,61,112,40,101,46,112,97,114,101,110,116,78,111,100,101,41,46,102,105,110,100,40,77,105,41,91,48,93,59,105,38,38,112,40,105,41,46,114,101,109,111,118,101,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,49,41,125,105,102,40,112,40,116,41,46,97,100,100,67,108,97,115,115,40,79,105,41,44,34,116,97,98,34,61,61,61,116,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,114,111,108,101,34,41,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,115,101,108,101,99,116,101,100,34,44,33,48,41,44,109,46,114,101,102,108,111,119,40,116,41,44,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,107,105,41,38,38,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,76,105,41,44,116,46,112,97,114,101,110,116,78,111,100,101,38,38,112,40,116,46,112,97,114,101,110,116,78,111,100,101,41,46,104,97,115,67,108,97,115,115,40,65,105,41,41,123,118,97,114,32,111,61,112,40,116,41,46,99,108,111,115,101,115,116,40,120,105,41,91,48,93,59,105,102,40,111,41,123,118,97,114,32,114,61,91,93,46,115,108,105,99,101,46,99,97,108,108,40,111,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,70,105,41,41,59,112,40,114,41,46,97,100,100,67,108,97,115,115,40,79,105,41,125,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,114,105,97,45,101,120,112,97,110,100,101,100,34,44,33,48,41,125,110,38,38,110,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,84,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,41,44,116,46,100,97,116,97,40,84,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,93,41,44,105,125,40,41,59,112,40,100,111,99,117,109,101,110,116,41,46,111,110,40,73,105,46,67,76,73,67,75,95,68,65,84,65,95,65,80,73,44,82,105,44,102,117,110,99,116,105,111,110,40,116,41,123,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,46,99,97,108,108,40,112,40,116,104,105,115,41,44,34,115,104,111,119,34,41,125,41,44,112,46,102,110,46,116,97,98,61,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,46,116,97,98,46,67,111,110,115,116,114,117,99,116,111,114,61,87,105,44,112,46,102,110,46,116,97,98,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,46,116,97,98,61,68,105,44,87,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,59,118,97,114,32,85,105,61,34,116,111,97,115,116,34,44,66,105,61,34,98,115,46,116,111,97,115,116,34,44,113,105,61,34,46,34,43,66,105,44,75,105,61,112,46,102,110,91,85,105,93,44,81,105,61,123,67,76,73,67,75,95,68,73,83,77,73,83,83,58,34,99,108,105,99,107,46,100,105,115,109,105,115,115,34,43,113,105,44,72,73,68,69,58,34,104,105,100,101,34,43,113,105,44,72,73,68,68,69,78,58,34,104,105,100,100,101,110,34,43,113,105,44,83,72,79,87,58,34,115,104,111,119,34,43,113,105,44,83,72,79,87,78,58,34,115,104,111,119,110,34,43,113,105,125,44,86,105,61,34,102,97,100,101,34,44,89,105,61,34,104,105,100,101,34,44,122,105,61,34,115,104,111,119,34,44,88,105,61,34,115,104,111,119,105,110,103,34,44,71,105,61,123,97,110,105,109,97,116,105,111,110,58,34,98,111,111,108,101,97,110,34,44,97,117,116,111,104,105,100,101,58,34,98,111,111,108,101,97,110,34,44,100,101,108,97,121,58,34,110,117,109,98,101,114,34,125,44,36,105,61,123,97,110,105,109,97,116,105,111,110,58,33,48,44,97,117,116,111,104,105,100,101,58,33,48,44,100,101,108,97,121,58,53,48,48,125,44,74,105,61,39,91,100,97,116,97,45,100,105,115,109,105,115,115,61,34,116,111,97,115,116,34,93,39,44,90,105,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,105,40,116,44,101,41,123,116,104,105,115,46,95,101,108,101,109,101,110,116,61,116,44,116,104,105,115,46,95,99,111,110,102,105,103,61,116,104,105,115,46,95,103,101,116,67,111,110,102,105,103,40,101,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,115,101,116,76,105,115,116,101,110,101,114,115,40,41,125,118,97,114,32,116,61,105,46,112,114,111,116,111,116,121,112,101,59,114,101,116,117,114,110,32,116,46,115,104,111,119,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,86,105,41,59,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,88,105,41,44,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,122,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,83,72,79,87,78,41,44,116,46,95,99,111,110,102,105,103,46,97,117,116,111,104,105,100,101,38,38,116,46,104,105,100,101,40,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,89,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,88,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,116,46,104,105,100,101,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,101,61,116,104,105,115,59,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,40,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,69,41,44,116,63,116,104,105,115,46,95,99,108,111,115,101,40,41,58,116,104,105,115,46,95,116,105,109,101,111,117,116,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,95,99,108,111,115,101,40,41,125,44,116,104,105,115,46,95,99,111,110,102,105,103,46,100,101,108,97,121,41,41,125,44,116,46,100,105,115,112,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,95,116,105,109,101,111,117,116,41,44,116,104,105,115,46,95,116,105,109,101,111,117,116,61,110,117,108,108,44,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,122,105,41,38,38,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,102,102,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,41,44,112,46,114,101,109,111,118,101,68,97,116,97,40,116,104,105,115,46,95,101,108,101,109,101,110,116,44,66,105,41,44,116,104,105,115,46,95,101,108,101,109,101,110,116,61,110,117,108,108,44,116,104,105,115,46,95,99,111,110,102,105,103,61,110,117,108,108,125,44,116,46,95,103,101,116,67,111,110,102,105,103,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,108,40,123,125,44,36,105,44,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,100,97,116,97,40,41,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,116,38,38,116,63,116,58,123,125,41,44,109,46,116,121,112,101,67,104,101,99,107,67,111,110,102,105,103,40,85,105,44,116,44,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,46,68,101,102,97,117,108,116,84,121,112,101,41,44,116,125,44,116,46,95,115,101,116,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,40,81,105,46,67,76,73,67,75,95,68,73,83,77,73,83,83,44,74,105,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,46,104,105,100,101,40,33,48,41,125,41,125,44,116,46,95,99,108,111,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,102,117,110,99,116,105,111,110,40,41,123,116,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,89,105,41,44,112,40,116,46,95,101,108,101,109,101,110,116,41,46,116,114,105,103,103,101,114,40,81,105,46,72,73,68,68,69,78,41,125,59,105,102,40,116,104,105,115,46,95,101,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,122,105,41,44,116,104,105,115,46,95,99,111,110,102,105,103,46,97,110,105,109,97,116,105,111,110,41,123,118,97,114,32,110,61,109,46,103,101,116,84,114,97,110,115,105,116,105,111,110,68,117,114,97,116,105,111,110,70,114,111,109,69,108,101,109,101,110,116,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,59,112,40,116,104,105,115,46,95,101,108,101,109,101,110,116,41,46,111,110,101,40,109,46,84,82,65,78,83,73,84,73,79,78,95,69,78,68,44,101,41,46,101,109,117,108,97,116,101,84,114,97,110,115,105,116,105,111,110,69,110,100,40,110,41,125,101,108,115,101,32,101,40,41,125,44,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,112,40,116,104,105,115,41,44,101,61,116,46,100,97,116,97,40,66,105,41,59,105,102,40,101,124,124,40,101,61,110,101,119,32,105,40,116,104,105,115,44,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,110,38,38,110,41,44,116,46,100,97,116,97,40,66,105,44,101,41,41,44,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,101,91,110,93,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,78,111,32,109,101,116,104,111,100,32,110,97,109,101,100,32,34,39,43,110,43,39,34,39,41,59,101,91,110,93,40,116,104,105,115,41,125,125,41,125,44,115,40,105,44,110,117,108,108,44,91,123,107,101,121,58,34,86,69,82,83,73,79,78,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,52,46,51,46,49,34,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,84,121,112,101,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,71,105,125,125,44,123,107,101,121,58,34,68,101,102,97,117,108,116,34,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,105,125,125,93,41,44,105,125,40,41,59,112,46,102,110,91,85,105,93,61,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,44,112,46,102,110,91,85,105,93,46,67,111,110,115,116,114,117,99,116,111,114,61,90,105,44,112,46,102,110,91,85,105,93,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,46,102,110,91,85,105,93,61,75,105,44,90,105,46,95,106,81,117,101,114,121,73,110,116,101,114,102,97,99,101,125,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,112,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,106,81,117,101,114,121,46,32,106,81,117,101,114,121,32,109,117,115,116,32,98,101,32,105,110,99,108,117,100,101,100,32,98,101,102,111,114,101,32,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,46,34,41,59,118,97,114,32,116,61,112,46,102,110,46,106,113,117,101,114,121,46,115,112,108,105,116,40,34,32,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,105,102,40,116,91,48,93,60,50,38,38,116,91,49,93,60,57,124,124,49,61,61,61,116,91,48,93,38,38,57,61,61,61,116,91,49,93,38,38,116,91,50,93,60,49,124,124,52,60,61,116,91,48,93,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,66,111,111,116,115,116,114,97,112,39,115,32,74,97,118,97,83,99,114,105,112,116,32,114,101,113,117,105,114,101,115,32,97,116,32,108,101,97,115,116,32,106,81,117,101,114,121,32,118,49,46,57,46,49,32,98,117,116,32,108,101,115,115,32,116,104,97,110,32,118,52,46,48,46,48,34,41,125,40,41,44,116,46,85,116,105,108,61,109,44,116,46,65,108,101,114,116,61,103,44,116,46,66,117,116,116,111,110,61,107,44,116,46,67,97,114,111,117,115,101,108,61,97,116,44,116,46,67,111,108,108,97,112,115,101,61,67,116,44,116,46,68,114,111,112,100,111,119,110,61,88,101,44,116,46,77,111,100,97,108,61,103,110,44,116,46,80,111,112,111,118,101,114,61,105,105,44,116,46,83,99,114,111,108,108,115,112,121,61,67,105,44,116,46,84,97,98,61,87,105,44,116,46,84,111,97,115,116,61,90,105,44,116,46,84,111,111,108,116,105,112,61,113,110,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,116,44,34,95,95,101,115,77,111,100,117,108,101,34,44,123,118,97,108,117,101,58,33,48,125,41,125,41,59,10,10,47,42,42,10,32,42,32,64,108,105,99,101,110,115,101,10,32,42,32,76,111,100,97,115,104,32,108,111,100,97,115,104,46,99,111,109,47,108,105,99,101,110,115,101,32,124,32,85,110,100,101,114,115,99,111,114,101,46,106,115,32,49,46,56,46,51,32,117,110,100,101,114,115,99,111,114,101,106,115,46,111,114,103,47,76,73,67,69,78,83,69,10,32,42,47,10,59,40,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,110,40,110,44,116,44,114,41,123,115,119,105,116,99,104,40,114,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,46,99,97,108,108,40,116,44,114,91,48,93,44,114,91,49,93,44,114,91,50,93,41,125,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,116,44,114,41,125,102,117,110,99,116,105,111,110,32,116,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,117,60,105,59,41,123,118,97,114,32,111,61,110,91,117,93,59,116,40,101,44,111,44,114,40,111,41,44,110,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,101,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,45,45,38,38,102,97,108,115,101,33,61,61,116,40,110,91,114,93,44,114,44,110,41,59,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,33,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,105,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,116,40,111,44,114,44,110,41,38,38,40,105,91,117,43,43,93,61,111,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,111,40,110,44,116,41,123,114,101,116,117,114,110,33,40,110,117,108,108,61,61,110,124,124,33,110,46,108,101,110,103,116,104,41,38,38,45,49,60,118,40,110,44,116,44,48,41,125,102,117,110,99,116,105,111,110,32,102,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,105,102,40,114,40,116,44,110,91,101,93,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,99,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,117,61,65,114,114,97,121,40,101,41,59,43,43,114,60,101,59,41,117,91,114,93,61,116,40,110,91,114,93,44,114,44,110,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,97,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,110,91,117,43,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,108,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,105,38,38,40,114,61,110,91,43,43,117,93,41,59,43,43,117,60,105,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,115,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,101,38,38,117,38,38,40,114,61,110,91,45,45,117,93,41,59,117,45,45,59,41,114,61,116,40,114,44,110,91,117,93,44,117,44,110,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,104,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,116,114,117,101,59,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,40,110,44,116,44,114,41,123,118,97,114,32,101,59,114,101,116,117,114,110,32,114,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,105,102,40,116,40,110,44,114,44,117,41,41,114,101,116,117,114,110,32,101,61,114,44,102,97,108,115,101,125,41,44,101,125,102,117,110,99,116,105,111,110,32,95,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,43,61,101,63,49,58,45,49,59,101,63,114,45,45,58,43,43,114,60,117,59,41,105,102,40,116,40,110,91,114,93,44,114,44,110,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,118,40,110,44,116,44,114,41,123,105,102,40,116,61,61,61,116,41,110,58,123,45,45,114,59,102,111,114,40,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,59,41,105,102,40,110,91,114,93,61,61,61,116,41,123,110,61,114,59,98,114,101,97,107,32,110,125,110,61,45,49,125,101,108,115,101,32,110,61,95,40,110,44,100,44,114,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,103,40,110,44,116,44,114,44,101,41,123,10,45,45,114,59,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,59,43,43,114,60,117,59,41,105,102,40,101,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,100,40,110,41,123,114,101,116,117,114,110,32,110,33,61,61,110,125,102,117,110,99,116,105,111,110,32,121,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,63,109,40,110,44,116,41,47,114,58,70,125,102,117,110,99,116,105,111,110,32,98,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,84,58,116,91,110,93,125,125,102,117,110,99,116,105,111,110,32,120,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,110,91,116,93,125,125,102,117,110,99,116,105,111,110,32,106,40,110,44,116,44,114,44,101,44,117,41,123,114,101,116,117,114,110,32,117,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,114,61,101,63,40,101,61,102,97,108,115,101,44,110,41,58,116,40,114,44,110,44,117,44,105,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,102,111,114,40,110,46,115,111,114,116,40,116,41,59,114,45,45,59,41,110,91,114,93,61,110,91,114,93,46,99,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,109,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,44,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,116,40,110,91,101,93,41,59,105,33,61,61,84,38,38,40,114,61,114,61,61,61,84,63,105,58,114,43,105,41,125,114,101,116,117,114,110,32,114,59,10,125,102,117,110,99,116,105,111,110,32,65,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,65,114,114,97,121,40,110,41,59,43,43,114,60,110,59,41,101,91,114,93,61,116,40,114,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,69,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,91,116,44,110,91,116,93,93,125,41,125,102,117,110,99,116,105,111,110,32,107,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,110,44,116,41,123,114,101,116,117,114,110,32,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,91,116,93,125,41,125,102,117,110,99,116,105,111,110,32,79,40,110,44,116,41,123,114,101,116,117,114,110,32,110,46,104,97,115,40,116,41,125,102,117,110,99,116,105,111,110,32,73,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,43,43,114,60,101,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,82,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,38,38,45,49,60,118,40,116,44,110,91,114,93,44,48,41,59,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,122,40,110,41,123,114,101,116,117,114,110,34,92,92,34,43,85,110,91,110,93,125,102,117,110,99,116,105,111,110,32,87,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,44,101,41,123,114,91,43,43,116,93,61,91,101,44,110,93,59,10,125,41,44,114,125,102,117,110,99,116,105,111,110,32,66,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,40,116,40,114,41,41,125,125,102,117,110,99,116,105,111,110,32,76,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,118,97,114,32,111,61,110,91,114,93,59,111,33,61,61,116,38,38,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,33,61,61,111,124,124,40,110,91,114,93,61,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,44,105,91,117,43,43,93,61,114,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,85,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,110,125,41,44,114,125,102,117,110,99,116,105,111,110,32,67,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,65,114,114,97,121,40,110,46,115,105,122,101,41,59,114,101,116,117,114,110,32,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,110,41,123,114,91,43,43,116,93,61,91,110,44,110,93,125,41,44,114,125,102,117,110,99,116,105,111,110,32,68,40,110,41,123,105,102,40,82,110,46,116,101,115,116,40,110,41,41,123,102,111,114,40,118,97,114,32,116,61,79,110,46,108,97,115,116,73,110,100,101,120,61,48,59,79,110,46,116,101,115,116,40,110,41,59,41,43,43,116,59,110,61,116,125,101,108,115,101,32,110,61,81,110,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,77,40,110,41,123,114,101,116,117,114,110,32,82,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,79,110,41,124,124,91,93,58,110,46,115,112,108,105,116,40,34,34,41,59,10,125,118,97,114,32,84,44,36,61,49,47,48,44,70,61,78,97,78,44,78,61,91,91,34,97,114,121,34,44,49,50,56,93,44,91,34,98,105,110,100,34,44,49,93,44,91,34,98,105,110,100,75,101,121,34,44,50,93,44,91,34,99,117,114,114,121,34,44,56,93,44,91,34,99,117,114,114,121,82,105,103,104,116,34,44,49,54,93,44,91,34,102,108,105,112,34,44,53,49,50,93,44,91,34,112,97,114,116,105,97,108,34,44,51,50,93,44,91,34,112,97,114,116,105,97,108,82,105,103,104,116,34,44,54,52,93,44,91,34,114,101,97,114,103,34,44,50,53,54,93,93,44,80,61,47,92,98,95,95,112,92,43,61,39,39,59,47,103,44,90,61,47,92,98,40,95,95,112,92,43,61,41,39,39,92,43,47,103,44,113,61,47,40,95,95,101,92,40,46,42,63,92,41,124,92,98,95,95,116,92,41,41,92,43,39,39,59,47,103,44,86,61,47,38,40,63,58,97,109,112,124,108,116,124,103,116,124,113,117,111,116,124,35,51,57,41,59,47,103,44,75,61,47,91,38,60,62,34,39,93,47,103,44,71,61,82,101,103,69,120,112,40,86,46,115,111,117,114,99,101,41,44,72,61,82,101,103,69,120,112,40,75,46,115,111,117,114,99,101,41,44,74,61,47,60,37,45,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,89,61,47,60,37,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,81,61,47,60,37,61,40,91,92,115,92,83,93,43,63,41,37,62,47,103,44,88,61,47,92,46,124,92,91,40,63,58,91,94,91,92,93,93,42,124,40,91,34,39,93,41,40,63,58,40,63,33,92,49,41,91,94,92,92,93,124,92,92,46,41,42,63,92,49,41,92,93,47,44,110,110,61,47,94,92,119,42,36,47,44,116,110,61,47,91,94,46,91,92,93,93,43,124,92,91,40,63,58,40,45,63,92,100,43,40,63,58,92,46,92,100,43,41,63,41,124,40,91,34,39,93,41,40,40,63,58,40,63,33,92,50,41,91,94,92,92,93,124,92,92,46,41,42,63,41,92,50,41,92,93,124,40,63,61,40,63,58,92,46,124,92,91,92,93,41,40,63,58,92,46,124,92,91,92,93,124,36,41,41,47,103,44,114,110,61,47,91,92,92,94,36,46,42,43,63,40,41,91,92,93,123,125,124,93,47,103,44,101,110,61,82,101,103,69,120,112,40,114,110,46,115,111,117,114,99,101,41,44,117,110,61,47,94,92,115,43,124,92,115,43,36,47,103,44,111,110,61,47,94,92,115,43,47,44,102,110,61,47,92,115,43,36,47,44,99,110,61,47,92,123,40,63,58,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,46,43,92,93,32,92,42,92,47,41,63,92,110,63,47,44,97,110,61,47,92,123,92,110,92,47,92,42,32,92,91,119,114,97,112,112,101,100,32,119,105,116,104,32,40,46,43,41,92,93,32,92,42,47,44,108,110,61,47,44,63,32,38,32,47,44,115,110,61,47,91,94,92,120,48,48,45,92,120,50,102,92,120,51,97,45,92,120,52,48,92,120,53,98,45,92,120,54,48,92,120,55,98,45,92,120,55,102,93,43,47,103,44,104,110,61,47,92,92,40,92,92,41,63,47,103,44,112,110,61,47,92,36,92,123,40,91,94,92,92,125,93,42,40,63,58,92,92,46,91,94,92,92,125,93,42,41,42,41,92,125,47,103,44,95,110,61,47,92,119,42,36,47,44,118,110,61,47,94,91,45,43,93,48,120,91,48,45,57,97,45,102,93,43,36,47,105,44,103,110,61,47,94,48,98,91,48,49,93,43,36,47,105,44,100,110,61,47,94,92,91,111,98,106,101,99,116,32,46,43,63,67,111,110,115,116,114,117,99,116,111,114,92,93,36,47,44,121,110,61,47,94,48,111,91,48,45,55,93,43,36,47,105,44,98,110,61,47,94,40,63,58,48,124,91,49,45,57,93,92,100,42,41,36,47,44,120,110,61,47,91,92,120,99,48,45,92,120,100,54,92,120,100,56,45,92,120,102,54,92,120,102,56,45,92,120,102,102,92,117,48,49,48,48,45,92,117,48,49,55,102,93,47,103,44,106,110,61,47,40,36,94,41,47,44,119,110,61,47,91,39,92,110,92,114,92,117,50,48,50,56,92,117,50,48,50,57,92,92,93,47,103,44,109,110,61,34,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,40,63,58,92,92,117,50,48,48,100,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,91,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,63,40,63,58,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,63,41,42,34,44,65,110,61,34,40,63,58,91,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,41,34,43,109,110,44,69,110,61,34,40,63,58,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,63,124,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,124,40,63,58,92,92,117,100,56,51,99,91,92,92,117,100,100,101,54,45,92,92,117,100,100,102,102,93,41,123,50,125,124,91,92,92,117,100,56,48,48,45,92,92,117,100,98,102,102,93,91,92,92,117,100,99,48,48,45,92,92,117,100,102,102,102,93,124,91,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,93,41,34,44,107,110,61,82,101,103,69,120,112,40,34,91,39,92,117,50,48,49,57,93,34,44,34,103,34,41,44,83,110,61,82,101,103,69,120,112,40,34,91,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,93,34,44,34,103,34,41,44,79,110,61,82,101,103,69,120,112,40,34,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,40,63,61,92,92,117,100,56,51,99,91,92,92,117,100,102,102,98,45,92,92,117,100,102,102,102,93,41,124,34,43,69,110,43,109,110,44,34,103,34,41,44,73,110,61,82,101,103,69,120,112,40,91,34,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,36,41,124,40,63,58,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,40,63,61,91,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,93,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,124,36,41,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,63,40,63,58,91,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,93,124,91,94,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,120,97,99,92,92,120,98,49,92,92,120,100,55,92,92,120,102,55,92,92,120,48,48,45,92,92,120,50,102,92,92,120,51,97,45,92,92,120,52,48,92,92,120,53,98,45,92,92,120,54,48,92,92,120,55,98,45,92,92,120,98,102,92,92,117,50,48,48,48,45,92,92,117,50,48,54,102,32,92,92,116,92,92,120,48,98,92,92,102,92,92,120,97,48,92,92,117,102,101,102,102,92,92,110,92,92,114,92,92,117,50,48,50,56,92,92,117,50,48,50,57,92,92,117,49,54,56,48,92,92,117,49,56,48,101,92,92,117,50,48,48,48,92,92,117,50,48,48,49,92,92,117,50,48,48,50,92,92,117,50,48,48,51,92,92,117,50,48,48,52,92,92,117,50,48,48,53,92,92,117,50,48,48,54,92,92,117,50,48,48,55,92,92,117,50,48,48,56,92,92,117,50,48,48,57,92,92,117,50,48,48,97,92,92,117,50,48,50,102,92,92,117,50,48,53,102,92,92,117,51,48,48,48,92,92,100,43,92,92,117,50,55,48,48,45,92,92,117,50,55,98,102,97,45,122,92,92,120,100,102,45,92,92,120,102,54,92,92,120,102,56,45,92,92,120,102,102,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,41,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,100,124,108,108,124,109,124,114,101,124,115,124,116,124,118,101,41,41,63,124,91,65,45,90,92,92,120,99,48,45,92,92,120,100,54,92,92,120,100,56,45,92,92,120,100,101,93,43,40,63,58,91,39,92,117,50,48,49,57,93,40,63,58,68,124,76,76,124,77,124,82,69,124,83,124,84,124,86,69,41,41,63,124,92,92,100,42,40,63,58,49,83,84,124,50,78,68,124,51,82,68,124,40,63,33,91,49,50,51,93,41,92,92,100,84,72,41,40,63,61,92,92,98,124,91,97,45,122,95,93,41,124,92,92,100,42,40,63,58,49,115,116,124,50,110,100,124,51,114,100,124,40,63,33,91,49,50,51,93,41,92,92,100,116,104,41,40,63,61,92,92,98,124,91,65,45,90,95,93,41,124,92,92,100,43,34,44,65,110,93,46,106,111,105,110,40,34,124,34,41,44,34,103,34,41,44,82,110,61,82,101,103,69,120,112,40,34,91,92,92,117,50,48,48,100,92,92,117,100,56,48,48,45,92,92,117,100,102,102,102,92,92,117,48,51,48,48,45,92,92,117,48,51,54,102,92,92,117,102,101,50,48,45,92,92,117,102,101,50,102,92,92,117,50,48,100,48,45,92,92,117,50,48,102,102,92,92,117,102,101,48,101,92,92,117,102,101,48,102,93,34,41,44,122,110,61,47,91,97,45,122,93,91,65,45,90,93,124,91,65,45,90,93,123,50,125,91,97,45,122,93,124,91,48,45,57,93,91,97,45,122,65,45,90,93,124,91,97,45,122,65,45,90,93,91,48,45,57,93,124,91,94,97,45,122,65,45,90,48,45,57,32,93,47,44,87,110,61,34,65,114,114,97,121,32,66,117,102,102,101,114,32,68,97,116,97,86,105,101,119,32,68,97,116,101,32,69,114,114,111,114,32,70,108,111,97,116,51,50,65,114,114,97,121,32,70,108,111,97,116,54,52,65,114,114,97,121,32,70,117,110,99,116,105,111,110,32,73,110,116,56,65,114,114,97,121,32,73,110,116,49,54,65,114,114,97,121,32,73,110,116,51,50,65,114,114,97,121,32,77,97,112,32,77,97,116,104,32,79,98,106,101,99,116,32,80,114,111,109,105,115,101,32,82,101,103,69,120,112,32,83,101,116,32,83,116,114,105,110,103,32,83,121,109,98,111,108,32,84,121,112,101,69,114,114,111,114,32,85,105,110,116,56,65,114,114,97,121,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,32,85,105,110,116,49,54,65,114,114,97,121,32,85,105,110,116,51,50,65,114,114,97,121,32,87,101,97,107,77,97,112,32,95,32,99,108,101,97,114,84,105,109,101,111,117,116,32,105,115,70,105,110,105,116,101,32,112,97,114,115,101,73,110,116,32,115,101,116,84,105,109,101,111,117,116,34,46,115,112,108,105,116,40,34,32,34,41,44,66,110,61,123,125,59,10,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,66,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,66,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,10,118,97,114,32,76,110,61,123,125,59,76,110,91,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,77,97,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,101,116,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,93,61,116,114,117,101,44,10,76,110,91,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,93,61,76,110,91,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,93,61,102,97,108,115,101,59,118,97,114,32,85,110,61,123,34,92,92,34,58,34,92,92,34,44,34,39,34,58,34,39,34,44,34,92,110,34,58,34,110,34,44,34,92,114,34,58,34,114,34,44,34,92,117,50,48,50,56,34,58,34,117,50,48,50,56,34,44,34,92,117,50,48,50,57,34,58,34,117,50,48,50,57,34,125,44,67,110,61,112,97,114,115,101,70,108,111,97,116,44,68,110,61,112,97,114,115,101,73,110,116,44,77,110,61,116,121,112,101,111,102,32,103,108,111,98,97,108,61,61,34,111,98,106,101,99,116,34,38,38,103,108,111,98,97,108,38,38,103,108,111,98,97,108,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,103,108,111,98,97,108,44,84,110,61,116,121,112,101,111,102,32,115,101,108,102,61,61,34,111,98,106,101,99,116,34,38,38,115,101,108,102,38,38,115,101,108,102,46,79,98,106,101,99,116,61,61,61,79,98,106,101,99,116,38,38,115,101,108,102,44,36,110,61,77,110,124,124,84,110,124,124,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,44,70,110,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,61,61,34,111,98,106,101,99,116,34,38,38,101,120,112,111,114,116,115,38,38,33,101,120,112,111,114,116,115,46,110,111,100,101,84,121,112,101,38,38,101,120,112,111,114,116,115,44,78,110,61,70,110,38,38,116,121,112,101,111,102,32,109,111,100,117,108,101,61,61,34,111,98,106,101,99,116,34,38,38,109,111,100,117,108,101,38,38,33,109,111,100,117,108,101,46,110,111,100,101,84,121,112,101,38,38,109,111,100,117,108,101,44,80,110,61,78,110,38,38,78,110,46,101,120,112,111,114,116,115,61,61,61,70,110,44,90,110,61,80,110,38,38,77,110,46,112,114,111,99,101,115,115,44,113,110,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,78,110,38,38,78,110,46,102,38,38,78,110,46,102,40,34,117,116,105,108,34,41,46,116,121,112,101,115,59,114,101,116,117,114,110,32,110,63,110,58,90,110,38,38,90,110,46,98,105,110,100,105,110,103,38,38,90,110,46,98,105,110,100,105,110,103,40,34,117,116,105,108,34,41,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,86,110,61,113,110,38,38,113,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,44,75,110,61,113,110,38,38,113,110,46,105,115,68,97,116,101,44,71,110,61,113,110,38,38,113,110,46,105,115,77,97,112,44,72,110,61,113,110,38,38,113,110,46,105,115,82,101,103,69,120,112,44,74,110,61,113,110,38,38,113,110,46,105,115,83,101,116,44,89,110,61,113,110,38,38,113,110,46,105,115,84,121,112,101,100,65,114,114,97,121,44,81,110,61,98,40,34,108,101,110,103,116,104,34,41,44,88,110,61,120,40,123,34,92,120,99,48,34,58,34,65,34,44,34,92,120,99,49,34,58,34,65,34,44,34,92,120,99,50,34,58,34,65,34,44,34,92,120,99,51,34,58,34,65,34,44,34,92,120,99,52,34,58,34,65,34,44,34,92,120,99,53,34,58,34,65,34,44,34,92,120,101,48,34,58,34,97,34,44,34,92,120,101,49,34,58,34,97,34,44,34,92,120,101,50,34,58,34,97,34,44,34,92,120,101,51,34,58,34,97,34,44,34,92,120,101,52,34,58,34,97,34,44,34,92,120,101,53,34,58,34,97,34,44,34,92,120,99,55,34,58,34,67,34,44,34,92,120,101,55,34,58,34,99,34,44,34,92,120,100,48,34,58,34,68,34,44,34,92,120,102,48,34,58,34,100,34,44,34,92,120,99,56,34,58,34,69,34,44,34,92,120,99,57,34,58,34,69,34,44,34,92,120,99,97,34,58,34,69,34,44,34,92,120,99,98,34,58,34,69,34,44,34,92,120,101,56,34,58,34,101,34,44,34,92,120,101,57,34,58,34,101,34,44,34,92,120,101,97,34,58,34,101,34,44,34,92,120,101,98,34,58,34,101,34,44,34,92,120,99,99,34,58,34,73,34,44,10,34,92,120,99,100,34,58,34,73,34,44,34,92,120,99,101,34,58,34,73,34,44,34,92,120,99,102,34,58,34,73,34,44,34,92,120,101,99,34,58,34,105,34,44,34,92,120,101,100,34,58,34,105,34,44,34,92,120,101,101,34,58,34,105,34,44,34,92,120,101,102,34,58,34,105,34,44,34,92,120,100,49,34,58,34,78,34,44,34,92,120,102,49,34,58,34,110,34,44,34,92,120,100,50,34,58,34,79,34,44,34,92,120,100,51,34,58,34,79,34,44,34,92,120,100,52,34,58,34,79,34,44,34,92,120,100,53,34,58,34,79,34,44,34,92,120,100,54,34,58,34,79,34,44,34,92,120,100,56,34,58,34,79,34,44,34,92,120,102,50,34,58,34,111,34,44,34,92,120,102,51,34,58,34,111,34,44,34,92,120,102,52,34,58,34,111,34,44,34,92,120,102,53,34,58,34,111,34,44,34,92,120,102,54,34,58,34,111,34,44,34,92,120,102,56,34,58,34,111,34,44,34,92,120,100,57,34,58,34,85,34,44,34,92,120,100,97,34,58,34,85,34,44,34,92,120,100,98,34,58,34,85,34,44,34,92,120,100,99,34,58,34,85,34,44,34,92,120,102,57,34,58,34,117,34,44,34,92,120,102,97,34,58,34,117,34,44,34,92,120,102,98,34,58,34,117,34,44,34,92,120,102,99,34,58,34,117,34,44,34,92,120,100,100,34,58,34,89,34,44,34,92,120,102,100,34,58,34,121,34,44,34,92,120,102,102,34,58,34,121,34,44,34,92,120,99,54,34,58,34,65,101,34,44,34,92,120,101,54,34,58,34,97,101,34,44,34,92,120,100,101,34,58,34,84,104,34,44,34,92,120,102,101,34,58,34,116,104,34,44,34,92,120,100,102,34,58,34,115,115,34,44,34,92,117,48,49,48,48,34,58,34,65,34,44,34,92,117,48,49,48,50,34,58,34,65,34,44,34,92,117,48,49,48,52,34,58,34,65,34,44,34,92,117,48,49,48,49,34,58,34,97,34,44,34,92,117,48,49,48,51,34,58,34,97,34,44,34,92,117,48,49,48,53,34,58,34,97,34,44,34,92,117,48,49,48,54,34,58,34,67,34,44,10,34,92,117,48,49,48,56,34,58,34,67,34,44,34,92,117,48,49,48,97,34,58,34,67,34,44,34,92,117,48,49,48,99,34,58,34,67,34,44,34,92,117,48,49,48,55,34,58,34,99,34,44,34,92,117,48,49,48,57,34,58,34,99,34,44,34,92,117,48,49,48,98,34,58,34,99,34,44,34,92,117,48,49,48,100,34,58,34,99,34,44,34,92,117,48,49,48,101,34,58,34,68,34,44,34,92,117,48,49,49,48,34,58,34,68,34,44,34,92,117,48,49,48,102,34,58,34,100,34,44,34,92,117,48,49,49,49,34,58,34,100,34,44,34,92,117,48,49,49,50,34,58,34,69,34,44,34,92,117,48,49,49,52,34,58,34,69,34,44,34,92,117,48,49,49,54,34,58,34,69,34,44,34,92,117,48,49,49,56,34,58,34,69,34,44,34,92,117,48,49,49,97,34,58,34,69,34,44,34,92,117,48,49,49,51,34,58,34,101,34,44,34,92,117,48,49,49,53,34,58,34,101,34,44,34,92,117,48,49,49,55,34,58,34,101,34,44,34,92,117,48,49,49,57,34,58,34,101,34,44,34,92,117,48,49,49,98,34,58,34,101,34,44,34,92,117,48,49,49,99,34,58,34,71,34,44,34,92,117,48,49,49,101,34,58,34,71,34,44,34,92,117,48,49,50,48,34,58,34,71,34,44,34,92,117,48,49,50,50,34,58,34,71,34,44,34,92,117,48,49,49,100,34,58,34,103,34,44,34,92,117,48,49,49,102,34,58,34,103,34,44,34,92,117,48,49,50,49,34,58,34,103,34,44,34,92,117,48,49,50,51,34,58,34,103,34,44,34,92,117,48,49,50,52,34,58,34,72,34,44,34,92,117,48,49,50,54,34,58,34,72,34,44,34,92,117,48,49,50,53,34,58,34,104,34,44,34,92,117,48,49,50,55,34,58,34,104,34,44,34,92,117,48,49,50,56,34,58,34,73,34,44,34,92,117,48,49,50,97,34,58,34,73,34,44,34,92,117,48,49,50,99,34,58,34,73,34,44,34,92,117,48,49,50,101,34,58,34,73,34,44,34,92,117,48,49,51,48,34,58,34,73,34,44,34,92,117,48,49,50,57,34,58,34,105,34,44,10,34,92,117,48,49,50,98,34,58,34,105,34,44,34,92,117,48,49,50,100,34,58,34,105,34,44,34,92,117,48,49,50,102,34,58,34,105,34,44,34,92,117,48,49,51,49,34,58,34,105,34,44,34,92,117,48,49,51,52,34,58,34,74,34,44,34,92,117,48,49,51,53,34,58,34,106,34,44,34,92,117,48,49,51,54,34,58,34,75,34,44,34,92,117,48,49,51,55,34,58,34,107,34,44,34,92,117,48,49,51,56,34,58,34,107,34,44,34,92,117,48,49,51,57,34,58,34,76,34,44,34,92,117,48,49,51,98,34,58,34,76,34,44,34,92,117,48,49,51,100,34,58,34,76,34,44,34,92,117,48,49,51,102,34,58,34,76,34,44,34,92,117,48,49,52,49,34,58,34,76,34,44,34,92,117,48,49,51,97,34,58,34,108,34,44,34,92,117,48,49,51,99,34,58,34,108,34,44,34,92,117,48,49,51,101,34,58,34,108,34,44,34,92,117,48,49,52,48,34,58,34,108,34,44,34,92,117,48,49,52,50,34,58,34,108,34,44,34,92,117,48,49,52,51,34,58,34,78,34,44,34,92,117,48,49,52,53,34,58,34,78,34,44,34,92,117,48,49,52,55,34,58,34,78,34,44,34,92,117,48,49,52,97,34,58,34,78,34,44,34,92,117,48,49,52,52,34,58,34,110,34,44,34,92,117,48,49,52,54,34,58,34,110,34,44,34,92,117,48,49,52,56,34,58,34,110,34,44,34,92,117,48,49,52,98,34,58,34,110,34,44,34,92,117,48,49,52,99,34,58,34,79,34,44,34,92,117,48,49,52,101,34,58,34,79,34,44,34,92,117,48,49,53,48,34,58,34,79,34,44,34,92,117,48,49,52,100,34,58,34,111,34,44,34,92,117,48,49,52,102,34,58,34,111,34,44,34,92,117,48,49,53,49,34,58,34,111,34,44,34,92,117,48,49,53,52,34,58,34,82,34,44,34,92,117,48,49,53,54,34,58,34,82,34,44,34,92,117,48,49,53,56,34,58,34,82,34,44,34,92,117,48,49,53,53,34,58,34,114,34,44,34,92,117,48,49,53,55,34,58,34,114,34,44,34,92,117,48,49,53,57,34,58,34,114,34,44,10,34,92,117,48,49,53,97,34,58,34,83,34,44,34,92,117,48,49,53,99,34,58,34,83,34,44,34,92,117,48,49,53,101,34,58,34,83,34,44,34,92,117,48,49,54,48,34,58,34,83,34,44,34,92,117,48,49,53,98,34,58,34,115,34,44,34,92,117,48,49,53,100,34,58,34,115,34,44,34,92,117,48,49,53,102,34,58,34,115,34,44,34,92,117,48,49,54,49,34,58,34,115,34,44,34,92,117,48,49,54,50,34,58,34,84,34,44,34,92,117,48,49,54,52,34,58,34,84,34,44,34,92,117,48,49,54,54,34,58,34,84,34,44,34,92,117,48,49,54,51,34,58,34,116,34,44,34,92,117,48,49,54,53,34,58,34,116,34,44,34,92,117,48,49,54,55,34,58,34,116,34,44,34,92,117,48,49,54,56,34,58,34,85,34,44,34,92,117,48,49,54,97,34,58,34,85,34,44,34,92,117,48,49,54,99,34,58,34,85,34,44,34,92,117,48,49,54,101,34,58,34,85,34,44,34,92,117,48,49,55,48,34,58,34,85,34,44,34,92,117,48,49,55,50,34,58,34,85,34,44,34,92,117,48,49,54,57,34,58,34,117,34,44,34,92,117,48,49,54,98,34,58,34,117,34,44,34,92,117,48,49,54,100,34,58,34,117,34,44,34,92,117,48,49,54,102,34,58,34,117,34,44,34,92,117,48,49,55,49,34,58,34,117,34,44,34,92,117,48,49,55,51,34,58,34,117,34,44,34,92,117,48,49,55,52,34,58,34,87,34,44,34,92,117,48,49,55,53,34,58,34,119,34,44,34,92,117,48,49,55,54,34,58,34,89,34,44,34,92,117,48,49,55,55,34,58,34,121,34,44,34,92,117,48,49,55,56,34,58,34,89,34,44,34,92,117,48,49,55,57,34,58,34,90,34,44,34,92,117,48,49,55,98,34,58,34,90,34,44,34,92,117,48,49,55,100,34,58,34,90,34,44,34,92,117,48,49,55,97,34,58,34,122,34,44,34,92,117,48,49,55,99,34,58,34,122,34,44,34,92,117,48,49,55,101,34,58,34,122,34,44,34,92,117,48,49,51,50,34,58,34,73,74,34,44,34,92,117,48,49,51,51,34,58,34,105,106,34,44,10,34,92,117,48,49,53,50,34,58,34,79,101,34,44,34,92,117,48,49,53,51,34,58,34,111,101,34,44,34,92,117,48,49,52,57,34,58,34,39,110,34,44,34,92,117,48,49,55,102,34,58,34,115,34,125,41,44,110,116,61,120,40,123,34,38,34,58,34,38,97,109,112,59,34,44,34,60,34,58,34,38,108,116,59,34,44,34,62,34,58,34,38,103,116,59,34,44,39,34,39,58,34,38,113,117,111,116,59,34,44,34,39,34,58,34,38,35,51,57,59,34,125,41,44,116,116,61,120,40,123,34,38,97,109,112,59,34,58,34,38,34,44,34,38,108,116,59,34,58,34,60,34,44,34,38,103,116,59,34,58,34,62,34,44,34,38,113,117,111,116,59,34,58,39,34,39,44,34,38,35,51,57,59,34,58,34,39,34,125,41,44,114,116,61,102,117,110,99,116,105,111,110,32,120,40,109,110,41,123,102,117,110,99,116,105,111,110,32,65,110,40,110,41,123,105,102,40,121,117,40,110,41,38,38,33,102,102,40,110,41,38,38,33,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,79,110,41,114,101,116,117,114,110,32,110,59,105,102,40,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,41,114,101,116,117,114,110,32,70,101,40,110,41,125,114,101,116,117,114,110,32,110,101,119,32,79,110,40,110,41,125,102,117,110,99,116,105,111,110,32,69,110,40,41,123,125,102,117,110,99,116,105,111,110,32,79,110,40,110,44,116,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,61,33,33,116,44,116,104,105,115,46,95,95,105,110,100,101,120,95,95,61,48,44,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,84,125,102,117,110,99,116,105,111,110,32,85,110,40,110,41,123,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,10,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,61,91,93,44,116,104,105,115,46,95,95,100,105,114,95,95,61,49,44,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,61,102,97,108,115,101,44,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,91,93,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,52,50,57,52,57,54,55,50,57,53,44,116,104,105,115,46,95,95,118,105,101,119,115,95,95,61,91,93,125,102,117,110,99,116,105,111,110,32,77,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,84,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,70,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,99,108,101,97,114,40,41,59,43,43,116,60,114,59,41,123,118,97,114,32,101,61,110,91,116,93,59,116,104,105,115,46,115,101,116,40,101,91,48,93,44,101,91,49,93,41,125,125,102,117,110,99,116,105,111,110,32,78,110,40,110,41,123,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,102,111,114,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,59,43,43,116,60,114,59,41,116,104,105,115,46,97,100,100,40,110,91,116,93,41,59,10,125,102,117,110,99,116,105,111,110,32,90,110,40,110,41,123,116,104,105,115,46,115,105,122,101,61,40,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,40,110,41,41,46,115,105,122,101,125,102,117,110,99,116,105,111,110,32,113,110,40,110,44,116,41,123,118,97,114,32,114,44,101,61,102,102,40,110,41,44,117,61,33,101,38,38,111,102,40,110,41,44,105,61,33,101,38,38,33,117,38,38,97,102,40,110,41,44,111,61,33,101,38,38,33,117,38,38,33,105,38,38,95,102,40,110,41,44,117,61,40,101,61,101,124,124,117,124,124,105,124,124,111,41,63,65,40,110,46,108,101,110,103,116,104,44,110,105,41,58,91,93,44,102,61,117,46,108,101,110,103,116,104,59,102,111,114,40,114,32,105,110,32,110,41,33,116,38,38,33,111,105,46,99,97,108,108,40,110,44,114,41,124,124,101,38,38,40,34,108,101,110,103,116,104,34,61,61,114,124,124,105,38,38,40,34,111,102,102,115,101,116,34,61,61,114,124,124,34,112,97,114,101,110,116,34,61,61,114,41,124,124,111,38,38,40,34,98,117,102,102,101,114,34,61,61,114,124,124,34,98,121,116,101,76,101,110,103,116,104,34,61,61,114,124,124,34,98,121,116,101,79,102,102,115,101,116,34,61,61,114,41,124,124,83,101,40,114,44,102,41,41,124,124,117,46,112,117,115,104,40,114,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,81,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,105,114,40,48,44,116,45,49,41,93,58,84,125,102,117,110,99,116,105,111,110,32,101,116,40,110,44,116,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,44,112,116,40,116,44,48,44,110,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,117,116,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,105,116,40,110,44,116,44,114,41,123,40,114,61,61,61,84,124,124,108,117,40,110,91,116,93,44,114,41,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,59,10,125,102,117,110,99,116,105,111,110,32,111,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,91,116,93,59,111,105,46,99,97,108,108,40,110,44,116,41,38,38,108,117,40,101,44,114,41,38,38,40,114,33,61,61,84,124,124,116,32,105,110,32,110,41,124,124,115,116,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,102,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,114,45,45,59,41,105,102,40,108,117,40,110,91,114,93,91,48,93,44,116,41,41,114,101,116,117,114,110,32,114,59,114,101,116,117,114,110,45,49,125,102,117,110,99,116,105,111,110,32,99,116,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,110,44,114,40,110,41,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,97,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,87,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,108,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,67,114,40,116,44,66,117,40,116,41,44,110,41,125,102,117,110,99,116,105,111,110,32,115,116,40,110,44,116,44,114,41,123,34,95,95,112,114,111,116,111,95,95,34,61,61,116,38,38,65,105,63,65,105,40,110,44,116,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,116,114,117,101,44,118,97,108,117,101,58,114,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,58,110,91,116,93,61,114,125,102,117,110,99,116,105,111,110,32,104,116,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,75,117,40,101,41,44,105,61,110,117,108,108,61,61,110,59,43,43,114,60,101,59,41,117,91,114,93,61,105,63,84,58,82,117,40,110,44,116,91,114,93,41,59,114,101,116,117,114,110,32,117,59,10,125,102,117,110,99,116,105,111,110,32,112,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,61,61,110,38,38,40,114,33,61,61,84,38,38,40,110,61,110,60,61,114,63,110,58,114,41,44,116,33,61,61,84,38,38,40,110,61,110,62,61,116,63,110,58,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,95,116,40,110,44,116,44,101,44,117,44,105,44,111,41,123,118,97,114,32,102,44,99,61,49,38,116,44,97,61,50,38,116,44,108,61,52,38,116,59,105,102,40,101,38,38,40,102,61,105,63,101,40,110,44,117,44,105,44,111,41,58,101,40,110,41,41,44,102,33,61,61,84,41,114,101,116,117,114,110,32,102,59,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,105,102,40,117,61,102,102,40,110,41,41,123,105,102,40,102,61,109,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,85,114,40,110,44,102,41,125,101,108,115,101,123,118,97,114,32,115,61,118,111,40,110,41,44,104,61,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,115,59,105,102,40,97,102,40,110,41,41,114,101,116,117,114,110,32,73,114,40,110,44,99,41,59,105,102,40,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,115,124,124,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,115,124,124,104,38,38,33,105,41,123,105,102,40,102,61,97,124,124,104,63,123,125,58,65,101,40,110,41,44,33,99,41,114,101,116,117,114,110,32,97,63,77,114,40,110,44,108,116,40,102,44,110,41,41,58,68,114,40,110,44,97,116,40,102,44,110,41,41,125,101,108,115,101,123,105,102,40,33,76,110,91,115,93,41,114,101,116,117,114,110,32,105,63,110,58,123,125,59,102,61,69,101,40,110,44,115,44,99,41,125,125,105,102,40,111,124,124,40,111,61,110,101,119,32,90,110,41,44,10,105,61,111,46,103,101,116,40,110,41,41,114,101,116,117,114,110,32,105,59,111,46,115,101,116,40,110,44,102,41,44,112,102,40,110,41,63,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,41,123,102,46,97,100,100,40,95,116,40,114,44,116,44,101,44,114,44,110,44,111,41,41,125,41,58,115,102,40,110,41,38,38,110,46,102,111,114,69,97,99,104,40,102,117,110,99,116,105,111,110,40,114,44,117,41,123,102,46,115,101,116,40,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,59,118,97,114,32,97,61,108,63,97,63,118,101,58,95,101,58,97,63,66,117,58,87,117,44,112,61,117,63,84,58,97,40,110,41,59,114,101,116,117,114,110,32,114,40,112,124,124,110,44,102,117,110,99,116,105,111,110,40,114,44,117,41,123,112,38,38,40,117,61,114,44,114,61,110,91,117,93,41,44,111,116,40,102,44,117,44,95,116,40,114,44,116,44,101,44,117,44,110,44,111,41,41,125,41,44,102,125,102,117,110,99,116,105,111,110,32,118,116,40,110,41,123,118,97,114,32,116,61,87,117,40,110,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,103,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,103,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,101,59,102,111,114,40,110,61,81,117,40,110,41,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,116,91,117,93,44,111,61,110,91,117,93,59,105,102,40,111,61,61,61,84,38,38,33,40,117,32,105,110,32,110,41,124,124,33,105,40,111,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,100,116,40,110,44,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,98,111,40,102,117,110,99,116,105,111,110,40,41,123,110,46,97,112,112,108,121,40,84,44,114,41,125,44,116,41,125,102,117,110,99,116,105,111,110,32,121,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,111,44,97,61,116,114,117,101,44,108,61,110,46,108,101,110,103,116,104,44,115,61,91,93,44,104,61,116,46,108,101,110,103,116,104,59,105,102,40,33,108,41,114,101,116,117,114,110,32,115,59,114,38,38,40,116,61,99,40,116,44,107,40,114,41,41,41,44,101,63,40,105,61,102,44,97,61,102,97,108,115,101,41,58,50,48,48,60,61,116,46,108,101,110,103,116,104,38,38,40,105,61,79,44,97,61,102,97,108,115,101,44,116,61,110,101,119,32,78,110,40,116,41,41,59,110,58,102,111,114,40,59,43,43,117,60,108,59,41,123,118,97,114,32,112,61,110,91,117,93,44,95,61,110,117,108,108,61,61,114,63,112,58,114,40,112,41,44,112,61,101,124,124,48,33,61,61,112,63,112,58,48,59,105,102,40,97,38,38,95,61,61,61,95,41,123,102,111,114,40,118,97,114,32,118,61,104,59,118,45,45,59,41,105,102,40,116,91,118,93,61,61,61,95,41,99,111,110,116,105,110,117,101,32,110,59,115,46,112,117,115,104,40,112,41,125,101,108,115,101,32,105,40,116,44,95,44,101,41,124,124,115,46,112,117,115,104,40,112,41,125,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,98,116,40,110,44,116,41,123,118,97,114,32,114,61,116,114,117,101,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,33,33,116,40,110,44,101,44,117,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,120,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,91,101,93,44,111,61,116,40,105,41,59,105,102,40,110,117,108,108,33,61,111,38,38,40,102,61,61,61,84,63,111,61,61,61,111,38,38,33,119,117,40,111,41,58,114,40,111,44,102,41,41,41,118,97,114,32,102,61,111,44,99,61,105,59,10,125,114,101,116,117,114,110,32,99,125,102,117,110,99,116,105,111,110,32,106,116,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,116,40,110,44,101,44,117,41,38,38,114,46,112,117,115,104,40,110,41,125,41,44,114,125,102,117,110,99,116,105,111,110,32,119,116,40,110,44,116,44,114,44,101,44,117,41,123,118,97,114,32,105,61,45,49,44,111,61,110,46,108,101,110,103,116,104,59,102,111,114,40,114,124,124,40,114,61,107,101,41,44,117,124,124,40,117,61,91,93,41,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,110,91,105,93,59,48,60,116,38,38,114,40,102,41,63,49,60,116,63,119,116,40,102,44,116,45,49,44,114,44,101,44,117,41,58,97,40,117,44,102,41,58,101,124,124,40,117,91,117,46,108,101,110,103,116,104,93,61,102,41,125,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,109,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,111,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,65,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,102,111,40,110,44,116,44,87,117,41,125,102,117,110,99,116,105,111,110,32,69,116,40,110,44,116,41,123,114,101,116,117,114,110,32,105,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,95,117,40,110,91,116,93,41,125,41,125,102,117,110,99,116,105,111,110,32,107,116,40,110,44,116,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,114,61,48,44,101,61,116,46,108,101,110,103,116,104,59,110,117,108,108,33,61,110,38,38,114,60,101,59,41,110,61,110,91,77,101,40,116,91,114,43,43,93,41,93,59,114,101,116,117,114,110,32,114,38,38,114,61,61,101,63,110,58,84,125,102,117,110,99,116,105,111,110,32,83,116,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,40,110,41,44,10,102,102,40,110,41,63,116,58,97,40,116,44,114,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,116,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,110,61,110,61,61,61,84,63,34,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93,34,58,34,91,111,98,106,101,99,116,32,78,117,108,108,93,34,59,101,108,115,101,32,105,102,40,109,105,38,38,109,105,32,105,110,32,81,117,40,110,41,41,123,118,97,114,32,116,61,111,105,46,99,97,108,108,40,110,44,109,105,41,44,114,61,110,91,109,105,93,59,116,114,121,123,110,91,109,105,93,61,84,59,118,97,114,32,101,61,116,114,117,101,125,99,97,116,99,104,40,110,41,123,125,118,97,114,32,117,61,97,105,46,99,97,108,108,40,110,41,59,101,38,38,40,116,63,110,91,109,105,93,61,114,58,100,101,108,101,116,101,32,110,91,109,105,93,41,44,110,61,117,125,101,108,115,101,32,110,61,97,105,46,99,97,108,108,40,110,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,73,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,116,125,102,117,110,99,116,105,111,110,32,82,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,111,105,46,99,97,108,108,40,110,44,116,41,125,102,117,110,99,116,105,111,110,32,122,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,32,105,110,32,81,117,40,110,41,125,102,117,110,99,116,105,111,110,32,87,116,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,114,63,102,58,111,44,117,61,110,91,48,93,46,108,101,110,103,116,104,44,105,61,110,46,108,101,110,103,116,104,44,97,61,105,44,108,61,75,117,40,105,41,44,115,61,49,47,48,44,104,61,91,93,59,97,45,45,59,41,123,118,97,114,32,112,61,110,91,97,93,59,97,38,38,116,38,38,40,112,61,99,40,112,44,107,40,116,41,41,41,44,115,61,67,105,40,112,46,108,101,110,103,116,104,44,115,41,44,10,108,91,97,93,61,33,114,38,38,40,116,124,124,49,50,48,60,61,117,38,38,49,50,48,60,61,112,46,108,101,110,103,116,104,41,63,110,101,119,32,78,110,40,97,38,38,112,41,58,84,125,118,97,114,32,112,61,110,91,48,93,44,95,61,45,49,44,118,61,108,91,48,93,59,110,58,102,111,114,40,59,43,43,95,60,117,38,38,104,46,108,101,110,103,116,104,60,115,59,41,123,118,97,114,32,103,61,112,91,95,93,44,100,61,116,63,116,40,103,41,58,103,44,103,61,114,124,124,48,33,61,61,103,63,103,58,48,59,105,102,40,118,63,33,79,40,118,44,100,41,58,33,101,40,104,44,100,44,114,41,41,123,102,111,114,40,97,61,105,59,45,45,97,59,41,123,118,97,114,32,121,61,108,91,97,93,59,105,102,40,121,63,33,79,40,121,44,100,41,58,33,101,40,110,91,97,93,44,100,44,114,41,41,99,111,110,116,105,110,117,101,32,110,125,118,38,38,118,46,112,117,115,104,40,100,41,44,104,46,112,117,115,104,40,103,41,125,125,114,101,116,117,114,110,32,104,125,102,117,110,99,116,105,111,110,32,66,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,123,125,59,114,101,116,117,114,110,32,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,116,40,101,44,114,40,110,41,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,76,116,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,83,114,40,114,44,116,41,44,116,61,50,62,114,46,108,101,110,103,116,104,63,116,58,107,116,40,116,44,104,114,40,114,44,48,44,45,49,41,41,44,114,61,110,117,108,108,61,61,116,63,116,58,116,91,77,101,40,86,101,40,114,41,41,93,44,110,117,108,108,61,61,114,63,84,58,110,40,114,44,116,44,101,41,125,102,117,110,99,116,105,111,110,32,85,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,67,116,40,110,41,123,10,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,68,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,77,116,40,110,44,116,44,114,44,101,44,117,41,123,105,102,40,110,61,61,61,116,41,116,61,116,114,117,101,59,101,108,115,101,32,105,102,40,110,117,108,108,61,61,110,124,124,110,117,108,108,61,61,116,124,124,33,121,117,40,110,41,38,38,33,121,117,40,116,41,41,116,61,110,33,61,61,110,38,38,116,33,61,61,116,59,101,108,115,101,32,110,58,123,118,97,114,32,105,61,102,102,40,110,41,44,111,61,102,102,40,116,41,44,102,61,105,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,110,41,44,99,61,111,63,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,58,118,111,40,116,41,44,102,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,102,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,102,44,99,61,34,91,111,98,106,101,99,116,32,65,114,103,117,109,101,110,116,115,93,34,61,61,99,63,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,58,99,44,97,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,102,44,111,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,99,59,105,102,40,40,99,61,102,61,61,99,41,38,38,97,102,40,110,41,41,123,105,102,40,33,97,102,40,116,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,110,125,105,61,116,114,117,101,44,97,61,102,97,108,115,101,125,105,102,40,99,38,38,33,97,41,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,105,124,124,95,102,40,110,41,63,115,101,40,110,44,116,44,114,44,101,44,77,116,44,117,41,58,104,101,40,110,44,116,44,102,44,114,44,101,44,77,116,44,117,41,59,101,108,115,101,123,10,105,102,40,33,40,49,38,114,41,38,38,40,105,61,97,38,38,111,105,46,99,97,108,108,40,110,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,102,61,111,38,38,111,105,46,99,97,108,108,40,116,44,34,95,95,119,114,97,112,112,101,100,95,95,34,41,44,105,124,124,102,41,41,123,110,61,105,63,110,46,118,97,108,117,101,40,41,58,110,44,116,61,102,63,116,46,118,97,108,117,101,40,41,58,116,44,117,124,124,40,117,61,110,101,119,32,90,110,41,44,116,61,77,116,40,110,44,116,44,114,44,101,44,117,41,59,98,114,101,97,107,32,110,125,105,102,40,99,41,116,58,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,105,61,49,38,114,44,102,61,95,101,40,110,41,44,111,61,102,46,108,101,110,103,116,104,44,99,61,95,101,40,116,41,46,108,101,110,103,116,104,44,111,61,61,99,124,124,105,41,123,102,111,114,40,97,61,111,59,97,45,45,59,41,123,118,97,114,32,108,61,102,91,97,93,59,105,102,40,33,40,105,63,108,32,105,110,32,116,58,111,105,46,99,97,108,108,40,116,44,108,41,41,41,123,116,61,102,97,108,115,101,59,98,114,101,97,107,32,116,125,125,105,102,40,40,99,61,117,46,103,101,116,40,110,41,41,38,38,117,46,103,101,116,40,116,41,41,116,61,99,61,61,116,59,101,108,115,101,123,99,61,116,114,117,101,44,117,46,115,101,116,40,110,44,116,41,44,117,46,115,101,116,40,116,44,110,41,59,102,111,114,40,118,97,114,32,115,61,105,59,43,43,97,60,111,59,41,123,118,97,114,32,108,61,102,91,97,93,44,104,61,110,91,108,93,44,112,61,116,91,108,93,59,105,102,40,101,41,118,97,114,32,95,61,105,63,101,40,112,44,104,44,108,44,116,44,110,44,117,41,58,101,40,104,44,112,44,108,44,110,44,116,44,117,41,59,105,102,40,95,61,61,61,84,63,104,33,61,61,112,38,38,33,77,116,40,104,44,112,44,114,44,101,44,117,41,58,33,95,41,123,99,61,102,97,108,115,101,59,98,114,101,97,107,125,115,124,124,40,115,61,34,99,111,110,115,116,114,117,99,116,111,114,34,61,61,108,41,59,10,125,99,38,38,33,115,38,38,40,114,61,110,46,99,111,110,115,116,114,117,99,116,111,114,44,101,61,116,46,99,111,110,115,116,114,117,99,116,111,114,44,114,33,61,101,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,110,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,105,110,32,116,38,38,33,40,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,114,32,105,110,115,116,97,110,99,101,111,102,32,114,38,38,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,101,32,105,110,115,116,97,110,99,101,111,102,32,101,41,38,38,40,99,61,102,97,108,115,101,41,41,44,117,46,100,101,108,101,116,101,40,110,41,44,117,46,100,101,108,101,116,101,40,116,41,44,116,61,99,125,125,101,108,115,101,32,116,61,102,97,108,115,101,59,101,108,115,101,32,116,61,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,84,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,36,116,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,117,44,111,61,33,101,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,33,105,59,102,111,114,40,110,61,81,117,40,110,41,59,117,45,45,59,41,123,118,97,114,32,102,61,114,91,117,93,59,105,102,40,111,38,38,102,91,50,93,63,102,91,49,93,33,61,61,110,91,102,91,48,93,93,58,33,40,102,91,48,93,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,125,102,111,114,40,59,43,43,117,60,105,59,41,123,118,97,114,32,102,61,114,91,117,93,44,99,61,102,91,48,93,44,97,61,110,91,99,93,44,108,61,102,91,49,93,59,105,102,40,111,38,38,102,91,50,93,41,123,105,102,40,97,61,61,61,84,38,38,33,40,99,32,105,110,32,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,10,125,101,108,115,101,123,105,102,40,102,61,110,101,119,32,90,110,44,101,41,118,97,114,32,115,61,101,40,97,44,108,44,99,44,110,44,116,44,102,41,59,105,102,40,115,61,61,61,84,63,33,77,116,40,108,44,97,44,51,44,101,44,102,41,58,33,115,41,114,101,116,117,114,110,32,102,97,108,115,101,125,125,114,101,116,117,114,110,32,116,114,117,101,125,102,117,110,99,116,105,111,110,32,70,116,40,110,41,123,114,101,116,117,114,110,33,40,33,100,117,40,110,41,124,124,99,105,38,38,99,105,32,105,110,32,110,41,38,38,40,95,117,40,110,41,63,104,105,58,100,110,41,46,116,101,115,116,40,84,101,40,110,41,41,125,102,117,110,99,116,105,111,110,32,78,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,80,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,118,111,40,110,41,125,102,117,110,99,116,105,111,110,32,90,116,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,33,66,110,91,79,116,40,110,41,93,125,102,117,110,99,116,105,111,110,32,113,116,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,110,117,108,108,61,61,110,63,36,117,58,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,63,102,102,40,110,41,63,74,116,40,110,91,48,93,44,110,91,49,93,41,58,72,116,40,110,41,58,90,117,40,110,41,125,102,117,110,99,116,105,111,110,32,86,116,40,110,41,123,105,102,40,33,122,101,40,110,41,41,114,101,116,117,114,110,32,76,105,40,110,41,59,118,97,114,32,116,44,114,61,91,93,59,102,111,114,40,116,32,105,110,32,81,117,40,110,41,41,111,105,46,99,97,108,108,40,110,44,116,41,38,38,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,38,38,114,46,112,117,115,104,40,116,41,59,10,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,75,116,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,116,125,102,117,110,99,116,105,111,110,32,71,116,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,115,117,40,110,41,63,75,117,40,110,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,117,44,105,41,123,101,91,43,43,114,93,61,116,40,110,44,117,44,105,41,125,41,44,101,125,102,117,110,99,116,105,111,110,32,72,116,40,110,41,123,118,97,114,32,116,61,120,101,40,110,41,59,114,101,116,117,114,110,32,49,61,61,116,46,108,101,110,103,116,104,38,38,116,91,48,93,91,50,93,63,87,101,40,116,91,48,93,91,48,93,44,116,91,48,93,91,49,93,41,58,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,114,61,61,61,110,124,124,36,116,40,114,44,110,44,116,41,125,125,102,117,110,99,116,105,111,110,32,74,116,40,110,44,116,41,123,114,101,116,117,114,110,32,73,101,40,110,41,38,38,116,61,61,61,116,38,38,33,100,117,40,116,41,63,87,101,40,77,101,40,110,41,44,116,41,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,82,117,40,114,44,110,41,59,114,101,116,117,114,110,32,101,61,61,61,84,38,38,101,61,61,61,116,63,122,117,40,114,44,110,41,58,77,116,40,116,44,101,44,51,41,125,125,102,117,110,99,116,105,111,110,32,89,116,40,110,44,116,44,114,44,101,44,117,41,123,110,33,61,61,116,38,38,111,111,40,116,44,102,117,110,99,116,105,111,110,40,105,44,111,41,123,105,102,40,117,124,124,40,117,61,110,101,119,32,90,110,41,44,100,117,40,105,41,41,123,118,97,114,32,102,61,117,44,99,61,76,101,40,110,44,111,41,44,97,61,76,101,40,116,44,111,41,44,108,61,102,46,103,101,116,40,97,41,59,105,102,40,108,41,105,116,40,110,44,111,44,108,41,59,101,108,115,101,123,10,118,97,114,32,108,61,101,63,101,40,99,44,97,44,111,43,34,34,44,110,44,116,44,102,41,58,84,44,115,61,108,61,61,61,84,59,105,102,40,115,41,123,118,97,114,32,104,61,102,102,40,97,41,44,112,61,33,104,38,38,97,102,40,97,41,44,95,61,33,104,38,38,33,112,38,38,95,102,40,97,41,44,108,61,97,59,104,124,124,112,124,124,95,63,102,102,40,99,41,63,108,61,99,58,104,117,40,99,41,63,108,61,85,114,40,99,41,58,112,63,40,115,61,102,97,108,115,101,44,108,61,73,114,40,97,44,116,114,117,101,41,41,58,95,63,40,115,61,102,97,108,115,101,44,108,61,122,114,40,97,44,116,114,117,101,41,41,58,108,61,91,93,58,120,117,40,97,41,124,124,111,102,40,97,41,63,40,108,61,99,44,111,102,40,99,41,63,108,61,79,117,40,99,41,58,100,117,40,99,41,38,38,33,95,117,40,99,41,124,124,40,108,61,65,101,40,97,41,41,41,58,115,61,102,97,108,115,101,125,115,38,38,40,102,46,115,101,116,40,97,44,108,41,44,89,116,40,108,44,97,44,114,44,101,44,102,41,44,102,46,100,101,108,101,116,101,40,97,41,41,44,105,116,40,110,44,111,44,108,41,125,125,101,108,115,101,32,102,61,101,63,101,40,76,101,40,110,44,111,41,44,105,44,111,43,34,34,44,110,44,116,44,117,41,58,84,44,102,61,61,61,84,38,38,40,102,61,105,41,44,105,116,40,110,44,111,44,102,41,125,44,66,117,41,125,102,117,110,99,116,105,111,110,32,81,116,40,110,44,116,41,123,118,97,114,32,114,61,110,46,108,101,110,103,116,104,59,105,102,40,114,41,114,101,116,117,114,110,32,116,43,61,48,62,116,63,114,58,48,44,83,101,40,116,44,114,41,63,110,91,116,93,58,84,125,102,117,110,99,116,105,111,110,32,88,116,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,59,114,101,116,117,114,110,32,116,61,99,40,116,46,108,101,110,103,116,104,63,116,58,91,36,117,93,44,107,40,121,101,40,41,41,41,44,110,61,71,116,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,123,10,97,58,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,41,44,98,58,43,43,101,44,99,58,110,125,125,41,44,119,40,110,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,101,59,110,58,123,101,61,45,49,59,102,111,114,40,118,97,114,32,117,61,110,46,97,44,105,61,116,46,97,44,111,61,117,46,108,101,110,103,116,104,44,102,61,114,46,108,101,110,103,116,104,59,43,43,101,60,111,59,41,123,118,97,114,32,99,61,87,114,40,117,91,101,93,44,105,91,101,93,41,59,105,102,40,99,41,123,101,61,101,62,61,102,63,99,58,99,42,40,34,100,101,115,99,34,61,61,114,91,101,93,63,45,49,58,49,41,59,98,114,101,97,107,32,110,125,125,101,61,110,46,98,45,116,46,98,125,114,101,116,117,114,110,32,101,125,41,125,102,117,110,99,116,105,111,110,32,110,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,114,40,110,44,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,122,117,40,110,44,114,41,125,41,125,102,117,110,99,116,105,111,110,32,116,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,123,125,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,116,91,101,93,44,102,61,107,116,40,110,44,111,41,59,114,40,102,44,111,41,38,38,108,114,40,105,44,83,114,40,111,44,110,41,44,102,41,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,107,116,40,116,44,110,41,125,125,102,117,110,99,116,105,111,110,32,101,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,101,63,103,58,118,44,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,44,102,61,110,59,102,111,114,40,110,61,61,61,116,38,38,40,116,61,85,114,40,116,41,41,44,10,114,38,38,40,102,61,99,40,110,44,107,40,114,41,41,41,59,43,43,105,60,111,59,41,102,111,114,40,118,97,114,32,97,61,48,44,108,61,116,91,105,93,44,108,61,114,63,114,40,108,41,58,108,59,45,49,60,40,97,61,117,40,102,44,108,44,97,44,101,41,41,59,41,102,33,61,61,110,38,38,120,105,46,99,97,108,108,40,102,44,97,44,49,41,44,120,105,46,99,97,108,108,40,110,44,97,44,49,41,59,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,117,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,110,63,116,46,108,101,110,103,116,104,58,48,44,101,61,114,45,49,59,114,45,45,59,41,123,118,97,114,32,117,61,116,91,114,93,59,105,102,40,114,61,61,101,124,124,117,33,61,61,105,41,123,118,97,114,32,105,61,117,59,83,101,40,117,41,63,120,105,46,99,97,108,108,40,110,44,117,44,49,41,58,120,114,40,110,44,117,41,125,125,125,102,117,110,99,116,105,111,110,32,105,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,73,105,40,84,105,40,41,42,40,116,45,110,43,49,41,41,125,102,117,110,99,116,105,111,110,32,111,114,40,110,44,116,41,123,118,97,114,32,114,61,34,34,59,105,102,40,33,110,124,124,49,62,116,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,116,41,114,101,116,117,114,110,32,114,59,100,111,32,116,37,50,38,38,40,114,43,61,110,41,44,40,116,61,73,105,40,116,47,50,41,41,38,38,40,110,43,61,110,41,59,119,104,105,108,101,40,116,41,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,102,114,40,110,44,116,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,116,44,36,117,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,99,114,40,110,41,123,114,101,116,117,114,110,32,81,110,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,97,114,40,110,44,116,41,123,118,97,114,32,114,61,85,117,40,110,41,59,10,114,101,116,117,114,110,32,68,101,40,114,44,112,116,40,116,44,48,44,114,46,108,101,110,103,116,104,41,41,125,102,117,110,99,116,105,111,110,32,108,114,40,110,44,116,44,114,44,101,41,123,105,102,40,33,100,117,40,110,41,41,114,101,116,117,114,110,32,110,59,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,116,46,108,101,110,103,116,104,44,111,61,105,45,49,44,102,61,110,59,110,117,108,108,33,61,102,38,38,43,43,117,60,105,59,41,123,118,97,114,32,99,61,77,101,40,116,91,117,93,41,44,97,61,114,59,105,102,40,117,33,61,111,41,123,118,97,114,32,108,61,102,91,99,93,44,97,61,101,63,101,40,108,44,99,44,102,41,58,84,59,97,61,61,61,84,38,38,40,97,61,100,117,40,108,41,63,108,58,83,101,40,116,91,117,43,49,93,41,63,91,93,58,123,125,41,125,111,116,40,102,44,99,44,97,41,44,102,61,102,91,99,93,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,115,114,40,110,41,123,114,101,116,117,114,110,32,68,101,40,85,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,104,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,59,102,111,114,40,48,62,116,38,38,40,116,61,45,116,62,117,63,48,58,117,43,116,41,44,114,61,114,62,117,63,117,58,114,44,48,62,114,38,38,40,114,43,61,117,41,44,117,61,116,62,114,63,48,58,114,45,116,62,62,62,48,44,116,62,62,62,61,48,44,114,61,75,117,40,117,41,59,43,43,101,60,117,59,41,114,91,101,93,61,110,91,101,43,116,93,59,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,112,114,40,110,44,116,41,123,118,97,114,32,114,59,114,101,116,117,114,110,32,117,111,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,114,101,116,117,114,110,32,114,61,116,40,110,44,101,44,117,41,44,33,114,125,41,44,33,33,114,125,10,102,117,110,99,116,105,111,110,32,95,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,48,44,117,61,110,117,108,108,61,61,110,63,101,58,110,46,108,101,110,103,116,104,59,105,102,40,116,121,112,101,111,102,32,116,61,61,34,110,117,109,98,101,114,34,38,38,116,61,61,61,116,38,38,50,49,52,55,52,56,51,54,52,55,62,61,117,41,123,102,111,114,40,59,101,60,117,59,41,123,118,97,114,32,105,61,101,43,117,62,62,62,49,44,111,61,110,91,105,93,59,110,117,108,108,33,61,61,111,38,38,33,119,117,40,111,41,38,38,40,114,63,111,60,61,116,58,111,60,116,41,63,101,61,105,43,49,58,117,61,105,125,114,101,116,117,114,110,32,117,125,114,101,116,117,114,110,32,118,114,40,110,44,116,44,36,117,44,114,41,125,102,117,110,99,116,105,111,110,32,118,114,40,110,44,116,44,114,44,101,41,123,116,61,114,40,116,41,59,102,111,114,40,118,97,114,32,117,61,48,44,105,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,111,61,116,33,61,61,116,44,102,61,110,117,108,108,61,61,61,116,44,99,61,119,117,40,116,41,44,97,61,116,61,61,61,84,59,117,60,105,59,41,123,118,97,114,32,108,61,73,105,40,40,117,43,105,41,47,50,41,44,115,61,114,40,110,91,108,93,41,44,104,61,115,33,61,61,84,44,112,61,110,117,108,108,61,61,61,115,44,95,61,115,61,61,61,115,44,118,61,119,117,40,115,41,59,40,111,63,101,124,124,95,58,97,63,95,38,38,40,101,124,124,104,41,58,102,63,95,38,38,104,38,38,40,101,124,124,33,112,41,58,99,63,95,38,38,104,38,38,33,112,38,38,40,101,124,124,33,118,41,58,112,124,124,118,63,48,58,101,63,115,60,61,116,58,115,60,116,41,63,117,61,108,43,49,58,105,61,108,125,114,101,116,117,114,110,32,67,105,40,105,44,52,50,57,52,57,54,55,50,57,52,41,125,102,117,110,99,116,105,111,110,32,103,114,40,110,44,116,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,48,44,105,61,91,93,59,43,43,114,60,101,59,41,123,10,118,97,114,32,111,61,110,91,114,93,44,102,61,116,63,116,40,111,41,58,111,59,105,102,40,33,114,124,124,33,108,117,40,102,44,99,41,41,123,118,97,114,32,99,61,102,59,105,91,117,43,43,93,61,48,61,61,61,111,63,48,58,111,125,125,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,100,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,63,110,58,119,117,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,121,114,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,110,59,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,99,40,110,44,121,114,41,43,34,34,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,114,111,63,114,111,46,99,97,108,108,40,110,41,58,34,34,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,98,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,111,44,105,61,110,46,108,101,110,103,116,104,44,99,61,116,114,117,101,44,97,61,91,93,44,108,61,97,59,105,102,40,114,41,99,61,102,97,108,115,101,44,117,61,102,59,101,108,115,101,32,105,102,40,50,48,48,60,61,105,41,123,105,102,40,117,61,116,63,110,117,108,108,58,115,111,40,110,41,41,114,101,116,117,114,110,32,85,40,117,41,59,99,61,102,97,108,115,101,44,117,61,79,44,108,61,110,101,119,32,78,110,125,101,108,115,101,32,108,61,116,63,91,93,58,97,59,110,58,102,111,114,40,59,43,43,101,60,105,59,41,123,118,97,114,32,115,61,110,91,101,93,44,104,61,116,63,116,40,115,41,58,115,44,115,61,114,124,124,48,33,61,61,115,63,115,58,48,59,105,102,40,99,38,38,104,61,61,61,104,41,123,102,111,114,40,118,97,114,32,112,61,108,46,108,101,110,103,116,104,59,112,45,45,59,41,105,102,40,108,91,112,93,61,61,61,104,41,99,111,110,116,105,110,117,101,32,110,59,10,116,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,125,101,108,115,101,32,117,40,108,44,104,44,114,41,124,124,40,108,33,61,61,97,38,38,108,46,112,117,115,104,40,104,41,44,97,46,112,117,115,104,40,115,41,41,125,114,101,116,117,114,110,32,97,125,102,117,110,99,116,105,111,110,32,120,114,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,110,61,50,62,116,46,108,101,110,103,116,104,63,110,58,107,116,40,110,44,104,114,40,116,44,48,44,45,49,41,41,44,110,117,108,108,61,61,110,124,124,100,101,108,101,116,101,32,110,91,77,101,40,86,101,40,116,41,41,93,125,102,117,110,99,116,105,111,110,32,106,114,40,110,44,116,44,114,44,101,41,123,102,111,114,40,118,97,114,32,117,61,110,46,108,101,110,103,116,104,44,105,61,101,63,117,58,45,49,59,40,101,63,105,45,45,58,43,43,105,60,117,41,38,38,116,40,110,91,105,93,44,105,44,110,41,59,41,59,114,101,116,117,114,110,32,114,63,104,114,40,110,44,101,63,48,58,105,44,101,63,105,43,49,58,117,41,58,104,114,40,110,44,101,63,105,43,49,58,48,44,101,63,117,58,105,41,125,102,117,110,99,116,105,111,110,32,119,114,40,110,44,116,41,123,118,97,114,32,114,61,110,59,114,101,116,117,114,110,32,114,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,40,114,61,114,46,118,97,108,117,101,40,41,41,44,108,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,46,102,117,110,99,46,97,112,112,108,121,40,116,46,116,104,105,115,65,114,103,44,97,40,91,110,93,44,116,46,97,114,103,115,41,41,125,44,114,41,125,102,117,110,99,116,105,111,110,32,109,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,105,102,40,50,62,101,41,114,101,116,117,114,110,32,101,63,98,114,40,110,91,48,93,41,58,91,93,59,102,111,114,40,118,97,114,32,117,61,45,49,44,105,61,75,117,40,101,41,59,43,43,117,60,101,59,41,102,111,114,40,118,97,114,32,111,61,110,91,117,93,44,102,61,45,49,59,43,43,102,60,101,59,41,102,33,61,117,38,38,40,105,91,117,93,61,121,116,40,105,91,117,93,124,124,111,44,110,91,102,93,44,116,44,114,41,41,59,10,114,101,116,117,114,110,32,98,114,40,119,116,40,105,44,49,41,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,65,114,40,110,44,116,44,114,41,123,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,110,46,108,101,110,103,116,104,44,105,61,116,46,108,101,110,103,116,104,44,111,61,123,125,59,43,43,101,60,117,59,41,114,40,111,44,110,91,101,93,44,101,60,105,63,116,91,101,93,58,84,41,59,114,101,116,117,114,110,32,111,125,102,117,110,99,116,105,111,110,32,69,114,40,110,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,110,58,91,93,125,102,117,110,99,116,105,111,110,32,107,114,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,36,117,125,102,117,110,99,116,105,111,110,32,83,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,73,101,40,110,44,116,41,63,91,110,93,58,106,111,40,73,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,79,114,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,101,58,114,44,33,116,38,38,114,62,61,101,63,110,58,104,114,40,110,44,116,44,114,41,125,102,117,110,99,116,105,111,110,32,73,114,40,110,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,110,46,115,108,105,99,101,40,41,59,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,114,61,103,105,63,103,105,40,114,41,58,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,114,41,59,114,101,116,117,114,110,32,110,46,99,111,112,121,40,114,41,44,114,125,102,117,110,99,116,105,111,110,32,82,114,40,110,41,123,118,97,114,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,98,121,116,101,76,101,110,103,116,104,41,59,114,101,116,117,114,110,32,110,101,119,32,118,105,40,116,41,46,115,101,116,40,110,101,119,32,118,105,40,110,41,41,44,10,116,125,102,117,110,99,116,105,111,110,32,122,114,40,110,44,116,41,123,114,101,116,117,114,110,32,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,108,101,110,103,116,104,41,125,102,117,110,99,116,105,111,110,32,87,114,40,110,44,116,41,123,105,102,40,110,33,61,61,116,41,123,118,97,114,32,114,61,110,33,61,61,84,44,101,61,110,117,108,108,61,61,61,110,44,117,61,110,61,61,61,110,44,105,61,119,117,40,110,41,44,111,61,116,33,61,61,84,44,102,61,110,117,108,108,61,61,61,116,44,99,61,116,61,61,61,116,44,97,61,119,117,40,116,41,59,105,102,40,33,102,38,38,33,97,38,38,33,105,38,38,110,62,116,124,124,105,38,38,111,38,38,99,38,38,33,102,38,38,33,97,124,124,101,38,38,111,38,38,99,124,124,33,114,38,38,99,124,124,33,117,41,114,101,116,117,114,110,32,49,59,105,102,40,33,101,38,38,33,105,38,38,33,97,38,38,110,60,116,124,124,97,38,38,114,38,38,117,38,38,33,101,38,38,33,105,124,124,102,38,38,114,38,38,117,124,124,33,111,38,38,117,124,124,33,99,41,114,101,116,117,114,110,45,49,125,114,101,116,117,114,110,32,48,125,102,117,110,99,116,105,111,110,32,66,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,114,46,108,101,110,103,116,104,44,102,61,45,49,44,99,61,116,46,108,101,110,103,116,104,44,97,61,85,105,40,105,45,111,44,48,41,44,108,61,75,117,40,99,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,102,60,99,59,41,108,91,102,93,61,116,91,102,93,59,102,111,114,40,59,43,43,117,60,111,59,41,40,101,124,124,117,60,105,41,38,38,40,108,91,114,91,117,93,93,61,110,91,117,93,41,59,102,111,114,40,59,97,45,45,59,41,108,91,102,43,43,93,61,110,91,117,43,43,93,59,10,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,76,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,110,46,108,101,110,103,116,104,44,111,61,45,49,44,102,61,114,46,108,101,110,103,116,104,44,99,61,45,49,44,97,61,116,46,108,101,110,103,116,104,44,108,61,85,105,40,105,45,102,44,48,41,44,115,61,75,117,40,108,43,97,41,59,102,111,114,40,101,61,33,101,59,43,43,117,60,108,59,41,115,91,117,93,61,110,91,117,93,59,102,111,114,40,108,61,117,59,43,43,99,60,97,59,41,115,91,108,43,99,93,61,116,91,99,93,59,102,111,114,40,59,43,43,111,60,102,59,41,40,101,124,124,117,60,105,41,38,38,40,115,91,108,43,114,91,111,93,93,61,110,91,117,43,43,93,41,59,114,101,116,117,114,110,32,115,125,102,117,110,99,116,105,111,110,32,85,114,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,124,124,40,116,61,75,117,40,101,41,41,59,43,43,114,60,101,59,41,116,91,114,93,61,110,91,114,93,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,67,114,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,33,114,59,114,124,124,40,114,61,123,125,41,59,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,116,46,108,101,110,103,116,104,59,43,43,105,60,111,59,41,123,118,97,114,32,102,61,116,91,105,93,44,99,61,101,63,101,40,114,91,102,93,44,110,91,102,93,44,102,44,114,44,110,41,58,84,59,99,61,61,61,84,38,38,40,99,61,110,91,102,93,41,44,117,63,115,116,40,114,44,102,44,99,41,58,111,116,40,114,44,102,44,99,41,125,114,101,116,117,114,110,32,114,125,102,117,110,99,116,105,111,110,32,68,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,112,111,40,110,41,44,116,41,125,102,117,110,99,116,105,111,110,32,77,114,40,110,44,116,41,123,114,101,116,117,114,110,32,67,114,40,110,44,95,111,40,110,41,44,116,41,59,10,125,102,117,110,99,116,105,111,110,32,84,114,40,110,44,114,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,117,41,123,118,97,114,32,105,61,102,102,40,101,41,63,116,58,99,116,44,111,61,114,63,114,40,41,58,123,125,59,114,101,116,117,114,110,32,105,40,101,44,110,44,121,101,40,117,44,50,41,44,111,41,125,125,102,117,110,99,116,105,111,110,32,36,114,40,110,41,123,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,118,97,114,32,101,61,45,49,44,117,61,114,46,108,101,110,103,116,104,44,105,61,49,60,117,63,114,91,117,45,49,93,58,84,44,111,61,50,60,117,63,114,91,50,93,58,84,44,105,61,51,60,110,46,108,101,110,103,116,104,38,38,116,121,112,101,111,102,32,105,61,61,34,102,117,110,99,116,105,111,110,34,63,40,117,45,45,44,105,41,58,84,59,102,111,114,40,111,38,38,79,101,40,114,91,48,93,44,114,91,49,93,44,111,41,38,38,40,105,61,51,62,117,63,84,58,105,44,117,61,49,41,44,116,61,81,117,40,116,41,59,43,43,101,60,117,59,41,40,111,61,114,91,101,93,41,38,38,110,40,116,44,111,44,101,44,105,41,59,114,101,116,117,114,110,32,116,125,41,125,102,117,110,99,116,105,111,110,32,70,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,105,102,40,110,117,108,108,61,61,114,41,114,101,116,117,114,110,32,114,59,105,102,40,33,115,117,40,114,41,41,114,101,116,117,114,110,32,110,40,114,44,101,41,59,102,111,114,40,118,97,114,32,117,61,114,46,108,101,110,103,116,104,44,105,61,116,63,117,58,45,49,44,111,61,81,117,40,114,41,59,40,116,63,105,45,45,58,43,43,105,60,117,41,38,38,102,97,108,115,101,33,61,61,101,40,111,91,105,93,44,105,44,111,41,59,41,59,114,101,116,117,114,110,32,114,125,125,102,117,110,99,116,105,111,110,32,78,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,118,97,114,32,117,61,45,49,44,105,61,81,117,40,116,41,59,101,61,101,40,116,41,59,102,111,114,40,118,97,114,32,111,61,101,46,108,101,110,103,116,104,59,111,45,45,59,41,123,118,97,114,32,102,61,101,91,110,63,111,58,43,43,117,93,59,105,102,40,102,97,108,115,101,61,61,61,114,40,105,91,102,93,44,102,44,105,41,41,98,114,101,97,107,125,114,101,116,117,114,110,32,116,125,125,102,117,110,99,116,105,111,110,32,80,114,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,41,123,114,101,116,117,114,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,105,58,110,41,46,97,112,112,108,121,40,117,63,114,58,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,117,61,49,38,116,44,105,61,86,114,40,110,41,59,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,90,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,116,61,73,117,40,116,41,59,118,97,114,32,114,61,82,110,46,116,101,115,116,40,116,41,63,77,40,116,41,58,84,44,101,61,114,63,114,91,48,93,58,116,46,99,104,97,114,65,116,40,48,41,59,114,101,116,117,114,110,32,116,61,114,63,79,114,40,114,44,49,41,46,106,111,105,110,40,34,34,41,58,116,46,115,108,105,99,101,40,49,41,44,101,91,110,93,40,41,43,116,125,125,102,117,110,99,116,105,111,110,32,113,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,108,40,77,117,40,68,117,40,116,41,46,114,101,112,108,97,99,101,40,107,110,44,34,34,41,41,44,110,44,34,34,41,125,125,102,117,110,99,116,105,111,110,32,86,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,10,99,97,115,101,32,48,58,114,101,116,117,114,110,32,110,101,119,32,110,59,99,97,115,101,32,49,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,59,99,97,115,101,32,52,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,41,59,99,97,115,101,32,53,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,41,59,99,97,115,101,32,54,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,41,59,99,97,115,101,32,55,58,114,101,116,117,114,110,32,110,101,119,32,110,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,44,116,91,51,93,44,116,91,52,93,44,116,91,53,93,44,116,91,54,93,41,125,118,97,114,32,114,61,101,111,40,110,46,112,114,111,116,111,116,121,112,101,41,44,116,61,110,46,97,112,112,108,121,40,114,44,116,41,59,114,101,116,117,114,110,32,100,117,40,116,41,63,116,58,114,125,125,102,117,110,99,116,105,111,110,32,75,114,40,116,44,114,44,101,41,123,102,117,110,99,116,105,111,110,32,117,40,41,123,102,111,114,40,118,97,114,32,111,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,102,61,75,117,40,111,41,44,99,61,111,44,97,61,100,101,40,117,41,59,99,45,45,59,41,102,91,99,93,61,97,114,103,117,109,101,110,116,115,91,99,93,59,114,101,116,117,114,110,32,99,61,51,62,111,38,38,102,91,48,93,33,61,61,97,38,38,102,91,111,45,49,93,33,61,61,97,63,91,93,58,76,40,102,44,97,41,44,10,111,45,61,99,46,108,101,110,103,116,104,44,111,60,101,63,117,101,40,116,44,114,44,74,114,44,117,46,112,108,97,99,101,104,111,108,100,101,114,44,84,44,102,44,99,44,84,44,84,44,101,45,111,41,58,110,40,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,117,63,105,58,116,44,116,104,105,115,44,102,41,125,118,97,114,32,105,61,86,114,40,116,41,59,114,101,116,117,114,110,32,117,125,102,117,110,99,116,105,111,110,32,71,114,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,81,117,40,116,41,59,105,102,40,33,115,117,40,116,41,41,123,118,97,114,32,105,61,121,101,40,114,44,51,41,59,116,61,87,117,40,116,41,44,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,105,40,117,91,110,93,44,110,44,117,41,125,125,114,101,116,117,114,110,32,114,61,110,40,116,44,114,44,101,41,44,45,49,60,114,63,117,91,105,63,116,91,114,93,58,114,93,58,84,125,125,102,117,110,99,116,105,111,110,32,72,114,40,110,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,44,101,61,114,44,117,61,79,110,46,112,114,111,116,111,116,121,112,101,46,116,104,114,117,59,102,111,114,40,110,38,38,116,46,114,101,118,101,114,115,101,40,41,59,101,45,45,59,41,123,118,97,114,32,105,61,116,91,101,93,59,105,102,40,116,121,112,101,111,102,32,105,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,105,102,40,117,38,38,33,111,38,38,34,119,114,97,112,112,101,114,34,61,61,103,101,40,105,41,41,118,97,114,32,111,61,110,101,119,32,79,110,40,91,93,44,116,114,117,101,41,125,102,111,114,40,101,61,111,63,101,58,114,59,43,43,101,60,114,59,41,118,97,114,32,105,61,116,91,101,93,44,117,61,103,101,40,105,41,44,102,61,34,119,114,97,112,112,101,114,34,61,61,117,63,104,111,40,105,41,58,84,44,111,61,102,38,38,82,101,40,102,91,48,93,41,38,38,52,50,52,61,61,102,91,49,93,38,38,33,102,91,52,93,46,108,101,110,103,116,104,38,38,49,61,61,102,91,57,93,63,111,91,103,101,40,102,91,48,93,41,93,46,97,112,112,108,121,40,111,44,102,91,51,93,41,58,49,61,61,105,46,108,101,110,103,116,104,38,38,82,101,40,105,41,63,111,91,117,93,40,41,58,111,46,116,104,114,117,40,105,41,59,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,101,61,110,91,48,93,59,105,102,40,111,38,38,49,61,61,110,46,108,101,110,103,116,104,38,38,102,102,40,101,41,41,114,101,116,117,114,110,32,111,46,112,108,97,110,116,40,101,41,46,118,97,108,117,101,40,41,59,102,111,114,40,118,97,114,32,117,61,48,44,110,61,114,63,116,91,117,93,46,97,112,112,108,121,40,116,104,105,115,44,110,41,58,101,59,43,43,117,60,114,59,41,110,61,116,91,117,93,46,99,97,108,108,40,116,104,105,115,44,110,41,59,114,101,116,117,114,110,32,110,125,125,41,125,102,117,110,99,116,105,111,110,32,74,114,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,102,117,110,99,116,105,111,110,32,108,40,41,123,102,111,114,40,118,97,114,32,100,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,121,61,75,117,40,100,41,44,98,61,100,59,98,45,45,59,41,121,91,98,93,61,97,114,103,117,109,101,110,116,115,91,98,93,59,105,102,40,95,41,123,118,97,114,32,120,44,106,61,100,101,40,108,41,44,98,61,121,46,108,101,110,103,116,104,59,102,111,114,40,120,61,48,59,98,45,45,59,41,121,91,98,93,61,61,61,106,38,38,43,43,120,125,105,102,40,101,38,38,40,121,61,66,114,40,121,44,101,44,117,44,95,41,41,44,105,38,38,40,121,61,76,114,40,121,44,105,44,111,44,95,41,41,44,100,45,61,120,44,95,38,38,100,60,97,41,114,101,116,117,114,110,32,106,61,76,40,121,44,106,41,44,117,101,40,110,44,116,44,74,114,44,108,46,112,108,97,99,101,104,111,108,100,101,114,44,114,44,121,44,106,44,102,44,99,44,97,45,100,41,59,105,102,40,106,61,104,63,114,58,116,104,105,115,44,98,61,112,63,106,91,110,93,58,110,44,100,61,121,46,108,101,110,103,116,104,44,102,41,123,120,61,121,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,119,61,67,105,40,102,46,108,101,110,103,116,104,44,120,41,44,109,61,85,114,40,121,41,59,119,45,45,59,41,123,10,118,97,114,32,65,61,102,91,119,93,59,121,91,119,93,61,83,101,40,65,44,120,41,63,109,91,65,93,58,84,125,125,101,108,115,101,32,118,38,38,49,60,100,38,38,121,46,114,101,118,101,114,115,101,40,41,59,114,101,116,117,114,110,32,115,38,38,99,60,100,38,38,40,121,46,108,101,110,103,116,104,61,99,41,44,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,108,38,38,40,98,61,103,124,124,86,114,40,98,41,41,44,98,46,97,112,112,108,121,40,106,44,121,41,125,118,97,114,32,115,61,49,50,56,38,116,44,104,61,49,38,116,44,112,61,50,38,116,44,95,61,50,52,38,116,44,118,61,53,49,50,38,116,44,103,61,112,63,84,58,86,114,40,110,41,59,114,101,116,117,114,110,32,108,125,102,117,110,99,116,105,111,110,32,89,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,114,101,116,117,114,110,32,66,116,40,114,44,110,44,116,40,101,41,41,125,125,102,117,110,99,116,105,111,110,32,81,114,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,44,101,41,123,118,97,114,32,117,59,105,102,40,114,61,61,61,84,38,38,101,61,61,61,84,41,114,101,116,117,114,110,32,116,59,105,102,40,114,33,61,61,84,38,38,40,117,61,114,41,44,101,33,61,61,84,41,123,105,102,40,117,61,61,61,84,41,114,101,116,117,114,110,32,101,59,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,101,61,61,34,115,116,114,105,110,103,34,63,40,114,61,121,114,40,114,41,44,101,61,121,114,40,101,41,41,58,40,114,61,100,114,40,114,41,44,101,61,100,114,40,101,41,41,44,117,61,110,40,114,44,101,41,125,114,101,116,117,114,110,32,117,125,125,102,117,110,99,116,105,111,110,32,88,114,40,116,41,123,114,101,116,117,114,110,32,112,101,40,102,117,110,99,116,105,111,110,40,114,41,123,10,114,101,116,117,114,110,32,114,61,99,40,114,44,107,40,121,101,40,41,41,41,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,116,104,105,115,59,114,101,116,117,114,110,32,116,40,114,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,40,116,44,117,44,101,41,125,41,125,41,125,41,125,102,117,110,99,116,105,111,110,32,110,101,40,110,44,116,41,123,116,61,116,61,61,61,84,63,34,32,34,58,121,114,40,116,41,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,50,62,114,63,114,63,111,114,40,116,44,110,41,58,116,58,40,114,61,111,114,40,116,44,79,105,40,110,47,68,40,116,41,41,41,44,82,110,46,116,101,115,116,40,116,41,63,79,114,40,77,40,114,41,44,48,44,110,41,46,106,111,105,110,40,34,34,41,58,114,46,115,108,105,99,101,40,48,44,110,41,41,125,102,117,110,99,116,105,111,110,32,116,101,40,116,44,114,44,101,44,117,41,123,102,117,110,99,116,105,111,110,32,105,40,41,123,102,111,114,40,118,97,114,32,114,61,45,49,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,44,97,61,45,49,44,108,61,117,46,108,101,110,103,116,104,44,115,61,75,117,40,108,43,99,41,44,104,61,116,104,105,115,38,38,116,104,105,115,33,61,61,36,110,38,38,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,105,63,102,58,116,59,43,43,97,60,108,59,41,115,91,97,93,61,117,91,97,93,59,102,111,114,40,59,99,45,45,59,41,115,91,97,43,43,93,61,97,114,103,117,109,101,110,116,115,91,43,43,114,93,59,114,101,116,117,114,110,32,110,40,104,44,111,63,101,58,116,104,105,115,44,115,41,125,118,97,114,32,111,61,49,38,114,44,102,61,86,114,40,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,114,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,10,101,38,38,116,121,112,101,111,102,32,101,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,116,44,114,44,101,41,38,38,40,114,61,101,61,84,41,44,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,101,61,101,61,61,61,84,63,116,60,114,63,49,58,45,49,58,65,117,40,101,41,59,118,97,114,32,117,61,45,49,59,114,61,85,105,40,79,105,40,40,114,45,116,41,47,40,101,124,124,49,41,41,44,48,41,59,102,111,114,40,118,97,114,32,105,61,75,117,40,114,41,59,114,45,45,59,41,105,91,110,63,114,58,43,43,117,93,61,116,44,116,43,61,101,59,114,101,116,117,114,110,32,105,125,125,102,117,110,99,116,105,111,110,32,101,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,114,61,61,34,115,116,114,105,110,103,34,124,124,40,116,61,83,117,40,116,41,44,114,61,83,117,40,114,41,41,44,110,40,116,44,114,41,125,125,102,117,110,99,116,105,111,110,32,117,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,44,99,44,97,41,123,118,97,114,32,108,61,56,38,116,44,115,61,108,63,111,58,84,59,111,61,108,63,84,58,111,59,118,97,114,32,104,61,108,63,105,58,84,59,114,101,116,117,114,110,32,105,61,108,63,84,58,105,44,116,61,40,116,124,40,108,63,51,50,58,54,52,41,41,38,126,40,108,63,54,52,58,51,50,41,44,52,38,116,124,124,40,116,38,61,45,52,41,44,117,61,91,110,44,116,44,117,44,104,44,115,44,105,44,111,44,102,44,99,44,97,93,44,114,61,114,46,97,112,112,108,121,40,84,44,117,41,44,82,101,40,110,41,38,38,121,111,40,114,44,117,41,44,114,46,112,108,97,99,101,104,111,108,100,101,114,61,101,44,85,101,40,114,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,105,101,40,110,41,123,10,118,97,114,32,116,61,89,117,91,110,93,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,110,44,114,41,123,105,102,40,110,61,83,117,40,110,41,44,40,114,61,110,117,108,108,61,61,114,63,48,58,67,105,40,69,117,40,114,41,44,50,57,50,41,41,38,38,87,105,40,110,41,41,123,118,97,114,32,101,61,40,73,117,40,110,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,44,101,61,116,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,43,114,41,41,44,101,61,40,73,117,40,101,41,43,34,101,34,41,46,115,112,108,105,116,40,34,101,34,41,59,114,101,116,117,114,110,43,40,101,91,48,93,43,34,101,34,43,40,43,101,91,49,93,45,114,41,41,125,114,101,116,117,114,110,32,116,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,101,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,118,111,40,116,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,114,63,87,40,116,41,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,114,63,67,40,116,41,58,69,40,116,44,110,40,116,41,41,125,125,102,117,110,99,116,105,111,110,32,102,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,44,102,41,123,118,97,114,32,99,61,50,38,116,59,105,102,40,33,99,38,38,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,118,97,114,32,97,61,101,63,101,46,108,101,110,103,116,104,58,48,59,105,102,40,97,124,124,40,116,38,61,45,57,55,44,101,61,117,61,84,41,44,111,61,111,61,61,61,84,63,111,58,85,105,40,69,117,40,111,41,44,48,41,44,102,61,102,61,61,61,84,63,102,58,69,117,40,102,41,44,97,45,61,117,63,117,46,108,101,110,103,116,104,58,48,44,10,54,52,38,116,41,123,118,97,114,32,108,61,101,44,115,61,117,59,101,61,117,61,84,125,118,97,114,32,104,61,99,63,84,58,104,111,40,110,41,59,114,101,116,117,114,110,32,105,61,91,110,44,116,44,114,44,101,44,117,44,108,44,115,44,105,44,111,44,102,93,44,104,38,38,40,114,61,105,91,49,93,44,110,61,104,91,49,93,44,116,61,114,124,110,44,101,61,49,50,56,61,61,110,38,38,56,61,61,114,124,124,49,50,56,61,61,110,38,38,50,53,54,61,61,114,38,38,105,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,124,124,51,56,52,61,61,110,38,38,104,91,55,93,46,108,101,110,103,116,104,60,61,104,91,56,93,38,38,56,61,61,114,44,49,51,49,62,116,124,124,101,41,38,38,40,49,38,110,38,38,40,105,91,50,93,61,104,91,50,93,44,116,124,61,49,38,114,63,48,58,52,41,44,40,114,61,104,91,51,93,41,38,38,40,101,61,105,91,51,93,44,105,91,51,93,61,101,63,66,114,40,101,44,114,44,104,91,52,93,41,58,114,44,105,91,52,93,61,101,63,76,40,105,91,51,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,52,93,41,44,40,114,61,104,91,53,93,41,38,38,40,101,61,105,91,53,93,44,105,91,53,93,61,101,63,76,114,40,101,44,114,44,104,91,54,93,41,58,114,44,105,91,54,93,61,101,63,76,40,105,91,53,93,44,34,95,95,108,111,100,97,115,104,95,112,108,97,99,101,104,111,108,100,101,114,95,95,34,41,58,104,91,54,93,41,44,40,114,61,104,91,55,93,41,38,38,40,105,91,55,93,61,114,41,44,49,50,56,38,110,38,38,40,105,91,56,93,61,110,117,108,108,61,61,105,91,56,93,63,104,91,56,93,58,67,105,40,105,91,56,93,44,104,91,56,93,41,41,44,110,117,108,108,61,61,105,91,57,93,38,38,40,105,91,57,93,61,104,91,57,93,41,44,105,91,48,93,61,104,91,48,93,44,105,91,49,93,61,116,41,44,110,61,105,91,48,93,44,10,116,61,105,91,49,93,44,114,61,105,91,50,93,44,101,61,105,91,51,93,44,117,61,105,91,52,93,44,102,61,105,91,57,93,61,105,91,57,93,61,61,61,84,63,99,63,48,58,110,46,108,101,110,103,116,104,58,85,105,40,105,91,57,93,45,97,44,48,41,44,33,102,38,38,50,52,38,116,38,38,40,116,38,61,45,50,53,41,44,85,101,40,40,104,63,99,111,58,121,111,41,40,116,38,38,49,33,61,116,63,56,61,61,116,124,124,49,54,61,61,116,63,75,114,40,110,44,116,44,102,41,58,51,50,33,61,116,38,38,51,51,33,61,116,124,124,117,46,108,101,110,103,116,104,63,74,114,46,97,112,112,108,121,40,84,44,105,41,58,116,101,40,110,44,116,44,114,44,101,41,58,80,114,40,110,44,116,44,114,41,44,105,41,44,110,44,116,41,125,102,117,110,99,116,105,111,110,32,99,101,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,61,61,84,124,124,108,117,40,110,44,101,105,91,114,93,41,38,38,33,111,105,46,99,97,108,108,40,101,44,114,41,63,116,58,110,125,102,117,110,99,116,105,111,110,32,97,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,114,101,116,117,114,110,32,100,117,40,110,41,38,38,100,117,40,116,41,38,38,40,105,46,115,101,116,40,116,44,110,41,44,89,116,40,110,44,116,44,84,44,97,101,44,105,41,44,105,46,100,101,108,101,116,101,40,116,41,41,44,110,125,102,117,110,99,116,105,111,110,32,108,101,40,110,41,123,114,101,116,117,114,110,32,120,117,40,110,41,63,84,58,110,125,102,117,110,99,116,105,111,110,32,115,101,40,110,44,116,44,114,44,101,44,117,44,105,41,123,118,97,114,32,111,61,49,38,114,44,102,61,110,46,108,101,110,103,116,104,44,99,61,116,46,108,101,110,103,116,104,59,105,102,40,102,33,61,99,38,38,33,40,111,38,38,99,62,102,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,105,102,40,40,99,61,105,46,103,101,116,40,110,41,41,38,38,105,46,103,101,116,40,116,41,41,114,101,116,117,114,110,32,99,61,61,116,59,10,118,97,114,32,99,61,45,49,44,97,61,116,114,117,101,44,108,61,50,38,114,63,110,101,119,32,78,110,58,84,59,102,111,114,40,105,46,115,101,116,40,110,44,116,41,44,105,46,115,101,116,40,116,44,110,41,59,43,43,99,60,102,59,41,123,118,97,114,32,115,61,110,91,99,93,44,112,61,116,91,99,93,59,105,102,40,101,41,118,97,114,32,95,61,111,63,101,40,112,44,115,44,99,44,116,44,110,44,105,41,58,101,40,115,44,112,44,99,44,110,44,116,44,105,41,59,105,102,40,95,33,61,61,84,41,123,105,102,40,95,41,99,111,110,116,105,110,117,101,59,97,61,102,97,108,115,101,59,98,114,101,97,107,125,105,102,40,108,41,123,105,102,40,33,104,40,116,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,33,79,40,108,44,116,41,38,38,40,115,61,61,61,110,124,124,117,40,115,44,110,44,114,44,101,44,105,41,41,41,114,101,116,117,114,110,32,108,46,112,117,115,104,40,116,41,125,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,101,108,115,101,32,105,102,40,115,33,61,61,112,38,38,33,117,40,115,44,112,44,114,44,101,44,105,41,41,123,97,61,102,97,108,115,101,59,98,114,101,97,107,125,125,114,101,116,117,114,110,32,105,46,100,101,108,101,116,101,40,110,41,44,105,46,100,101,108,101,116,101,40,116,41,44,97,125,102,117,110,99,116,105,111,110,32,104,101,40,110,44,116,44,114,44,101,44,117,44,105,44,111,41,123,115,119,105,116,99,104,40,114,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,110,46,98,121,116,101,79,102,102,115,101,116,33,61,116,46,98,121,116,101,79,102,102,115,101,116,41,98,114,101,97,107,59,110,61,110,46,98,117,102,102,101,114,44,116,61,116,46,98,117,102,102,101,114,59,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,10,105,102,40,110,46,98,121,116,101,76,101,110,103,116,104,33,61,116,46,98,121,116,101,76,101,110,103,116,104,124,124,33,105,40,110,101,119,32,118,105,40,110,41,44,110,101,119,32,118,105,40,116,41,41,41,98,114,101,97,107,59,114,101,116,117,114,110,32,116,114,117,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,114,101,116,117,114,110,32,108,117,40,43,110,44,43,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,58,114,101,116,117,114,110,32,110,46,110,97,109,101,61,61,116,46,110,97,109,101,38,38,110,46,109,101,115,115,97,103,101,61,61,116,46,109,101,115,115,97,103,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,61,61,116,43,34,34,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,118,97,114,32,102,61,87,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,105,102,40,102,124,124,40,102,61,85,41,44,110,46,115,105,122,101,33,61,116,46,115,105,122,101,38,38,33,40,49,38,101,41,41,98,114,101,97,107,59,114,101,116,117,114,110,40,114,61,111,46,103,101,116,40,110,41,41,63,114,61,61,116,58,40,101,124,61,50,44,111,46,115,101,116,40,110,44,116,41,44,116,61,115,101,40,102,40,110,41,44,102,40,116,41,44,101,44,117,44,105,44,111,41,44,111,46,100,101,108,101,116,101,40,110,41,44,116,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,105,102,40,116,111,41,114,101,116,117,114,110,32,116,111,46,99,97,108,108,40,110,41,61,61,116,111,46,99,97,108,108,40,116,41,125,10,114,101,116,117,114,110,32,102,97,108,115,101,125,102,117,110,99,116,105,111,110,32,112,101,40,110,41,123,114,101,116,117,114,110,32,120,111,40,66,101,40,110,44,84,44,90,101,41,44,110,43,34,34,41,125,102,117,110,99,116,105,111,110,32,95,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,87,117,44,112,111,41,125,102,117,110,99,116,105,111,110,32,118,101,40,110,41,123,114,101,116,117,114,110,32,83,116,40,110,44,66,117,44,95,111,41,125,102,117,110,99,116,105,111,110,32,103,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,110,46,110,97,109,101,43,34,34,44,114,61,71,105,91,116,93,44,101,61,111,105,46,99,97,108,108,40,71,105,44,116,41,63,114,46,108,101,110,103,116,104,58,48,59,101,45,45,59,41,123,118,97,114,32,117,61,114,91,101,93,44,105,61,117,46,102,117,110,99,59,105,102,40,110,117,108,108,61,61,105,124,124,105,61,61,110,41,114,101,116,117,114,110,32,117,46,110,97,109,101,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,100,101,40,110,41,123,114,101,116,117,114,110,40,111,105,46,99,97,108,108,40,65,110,44,34,112,108,97,99,101,104,111,108,100,101,114,34,41,63,65,110,58,110,41,46,112,108,97,99,101,104,111,108,100,101,114,125,102,117,110,99,116,105,111,110,32,121,101,40,41,123,118,97,114,32,110,61,65,110,46,105,116,101,114,97,116,101,101,124,124,70,117,44,110,61,110,61,61,61,70,117,63,113,116,58,110,59,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,63,110,40,97,114,103,117,109,101,110,116,115,91,48,93,44,97,114,103,117,109,101,110,116,115,91,49,93,41,58,110,125,102,117,110,99,116,105,111,110,32,98,101,40,110,44,116,41,123,118,97,114,32,114,61,110,46,95,95,100,97,116,97,95,95,44,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,40,34,115,116,114,105,110,103,34,61,61,101,124,124,34,110,117,109,98,101,114,34,61,61,101,124,124,34,115,121,109,98,111,108,34,61,61,101,124,124,34,98,111,111,108,101,97,110,34,61,61,101,63,34,95,95,112,114,111,116,111,95,95,34,33,61,61,116,58,110,117,108,108,61,61,61,116,41,63,114,91,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,63,34,115,116,114,105,110,103,34,58,34,104,97,115,104,34,93,58,114,46,109,97,112,59,10,125,102,117,110,99,116,105,111,110,32,120,101,40,110,41,123,102,111,114,40,118,97,114,32,116,61,87,117,40,110,41,44,114,61,116,46,108,101,110,103,116,104,59,114,45,45,59,41,123,118,97,114,32,101,61,116,91,114,93,44,117,61,110,91,101,93,59,116,91,114,93,61,91,101,44,117,44,117,61,61,61,117,38,38,33,100,117,40,117,41,93,125,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,106,101,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,84,58,110,91,116,93,59,114,101,116,117,114,110,32,70,116,40,114,41,63,114,58,84,125,102,117,110,99,116,105,111,110,32,119,101,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,102,111,114,40,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,44,105,61,102,97,108,115,101,59,43,43,101,60,117,59,41,123,118,97,114,32,111,61,77,101,40,116,91,101,93,41,59,105,102,40,33,40,105,61,110,117,108,108,33,61,110,38,38,114,40,110,44,111,41,41,41,98,114,101,97,107,59,110,61,110,91,111,93,125,114,101,116,117,114,110,32,105,124,124,43,43,101,33,61,117,63,105,58,40,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,33,117,38,38,103,117,40,117,41,38,38,83,101,40,111,44,117,41,38,38,40,102,102,40,110,41,124,124,111,102,40,110,41,41,41,125,102,117,110,99,116,105,111,110,32,109,101,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,114,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,41,59,114,101,116,117,114,110,32,116,38,38,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,110,91,48,93,38,38,111,105,46,99,97,108,108,40,110,44,34,105,110,100,101,120,34,41,38,38,40,114,46,105,110,100,101,120,61,110,46,105,110,100,101,120,44,114,46,105,110,112,117,116,61,110,46,105,110,112,117,116,41,44,114,125,102,117,110,99,116,105,111,110,32,65,101,40,110,41,123,10,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,46,99,111,110,115,116,114,117,99,116,111,114,33,61,34,102,117,110,99,116,105,111,110,34,124,124,122,101,40,110,41,63,123,125,58,101,111,40,100,105,40,110,41,41,125,102,117,110,99,116,105,111,110,32,69,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,46,99,111,110,115,116,114,117,99,116,111,114,59,115,119,105,116,99,104,40,116,41,123,99,97,115,101,34,91,111,98,106,101,99,116,32,65,114,114,97,121,66,117,102,102,101,114,93,34,58,114,101,116,117,114,110,32,82,114,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,101,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,43,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,58,114,101,116,117,114,110,32,116,61,114,63,82,114,40,110,46,98,117,102,102,101,114,41,58,110,46,98,117,102,102,101,114,44,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,116,44,110,46,98,121,116,101,79,102,102,115,101,116,44,110,46,98,121,116,101,76,101,110,103,116,104,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,70,108,111,97,116,54,52,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,73,110,116,51,50,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,93,34,58,10,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,49,54,65,114,114,97,121,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,85,105,110,116,51,50,65,114,114,97,121,93,34,58,114,101,116,117,114,110,32,122,114,40,110,44,114,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,77,97,112,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,58,99,97,115,101,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,40,110,41,59,99,97,115,101,34,91,111,98,106,101,99,116,32,82,101,103,69,120,112,93,34,58,114,101,116,117,114,110,32,116,61,110,101,119,32,110,46,99,111,110,115,116,114,117,99,116,111,114,40,110,46,115,111,117,114,99,101,44,95,110,46,101,120,101,99,40,110,41,41,44,116,46,108,97,115,116,73,110,100,101,120,61,110,46,108,97,115,116,73,110,100,101,120,44,116,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,101,116,93,34,58,114,101,116,117,114,110,32,110,101,119,32,101,59,99,97,115,101,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,58,114,101,116,117,114,110,32,116,111,63,81,117,40,116,111,46,99,97,108,108,40,110,41,41,58,123,125,125,125,102,117,110,99,116,105,111,110,32,107,101,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,124,124,111,102,40,110,41,124,124,33,33,40,106,105,38,38,110,38,38,110,91,106,105,93,41,125,102,117,110,99,116,105,111,110,32,83,101,40,110,44,116,41,123,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,116,61,110,117,108,108,61,61,116,63,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,58,116,44,33,33,116,38,38,40,34,110,117,109,98,101,114,34,61,61,114,124,124,34,115,121,109,98,111,108,34,33,61,114,38,38,98,110,46,116,101,115,116,40,110,41,41,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,110,60,116,59,10,125,102,117,110,99,116,105,111,110,32,79,101,40,110,44,116,44,114,41,123,105,102,40,33,100,117,40,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,101,61,116,121,112,101,111,102,32,116,59,114,101,116,117,114,110,33,33,40,34,110,117,109,98,101,114,34,61,61,101,63,115,117,40,114,41,38,38,83,101,40,116,44,114,46,108,101,110,103,116,104,41,58,34,115,116,114,105,110,103,34,61,61,101,38,38,116,32,105,110,32,114,41,38,38,108,117,40,114,91,116,93,44,110,41,125,102,117,110,99,116,105,111,110,32,73,101,40,110,44,116,41,123,105,102,40,102,102,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,114,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,33,40,34,110,117,109,98,101,114,34,33,61,114,38,38,34,115,121,109,98,111,108,34,33,61,114,38,38,34,98,111,111,108,101,97,110,34,33,61,114,38,38,110,117,108,108,33,61,110,38,38,33,119,117,40,110,41,41,124,124,40,110,110,46,116,101,115,116,40,110,41,124,124,33,88,46,116,101,115,116,40,110,41,124,124,110,117,108,108,33,61,116,38,38,110,32,105,110,32,81,117,40,116,41,41,125,102,117,110,99,116,105,111,110,32,82,101,40,110,41,123,118,97,114,32,116,61,103,101,40,110,41,44,114,61,65,110,91,116,93,59,114,101,116,117,114,110,32,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,32,105,110,32,85,110,46,112,114,111,116,111,116,121,112,101,38,38,40,110,61,61,61,114,124,124,40,116,61,104,111,40,114,41,44,33,33,116,38,38,110,61,61,61,116,91,48,93,41,41,125,102,117,110,99,116,105,111,110,32,122,101,40,110,41,123,118,97,114,32,116,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,110,61,61,61,40,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,46,112,114,111,116,111,116,121,112,101,124,124,101,105,41,125,102,117,110,99,116,105,111,110,32,87,101,40,110,44,116,41,123,10,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,114,38,38,40,114,91,110,93,61,61,61,116,38,38,40,116,33,61,61,84,124,124,110,32,105,110,32,81,117,40,114,41,41,41,125,125,102,117,110,99,116,105,111,110,32,66,101,40,116,44,114,44,101,41,123,114,101,116,117,114,110,32,114,61,85,105,40,114,61,61,61,84,63,116,46,108,101,110,103,116,104,45,49,58,114,44,48,41,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,117,61,97,114,103,117,109,101,110,116,115,44,105,61,45,49,44,111,61,85,105,40,117,46,108,101,110,103,116,104,45,114,44,48,41,44,102,61,75,117,40,111,41,59,43,43,105,60,111,59,41,102,91,105,93,61,117,91,114,43,105,93,59,102,111,114,40,105,61,45,49,44,111,61,75,117,40,114,43,49,41,59,43,43,105,60,114,59,41,111,91,105,93,61,117,91,105,93,59,114,101,116,117,114,110,32,111,91,114,93,61,101,40,102,41,44,110,40,116,44,116,104,105,115,44,111,41,125,125,102,117,110,99,116,105,111,110,32,76,101,40,110,44,116,41,123,105,102,40,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,116,93,41,38,38,34,95,95,112,114,111,116,111,95,95,34,33,61,116,41,114,101,116,117,114,110,32,110,91,116,93,125,102,117,110,99,116,105,111,110,32,85,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,43,34,34,59,116,61,120,111,59,118,97,114,32,117,44,105,61,36,101,59,114,101,116,117,114,110,32,117,61,40,117,61,101,46,109,97,116,99,104,40,97,110,41,41,63,117,91,49,93,46,115,112,108,105,116,40,108,110,41,58,91,93,44,114,61,105,40,117,44,114,41,44,40,105,61,114,46,108,101,110,103,116,104,41,38,38,40,117,61,105,45,49,44,114,91,117,93,61,40,49,60,105,63,34,38,32,34,58,34,34,41,43,114,91,117,93,44,10,114,61,114,46,106,111,105,110,40,50,60,105,63,34,44,32,34,58,34,32,34,41,44,101,61,101,46,114,101,112,108,97,99,101,40,99,110,44,34,123,92,110,47,42,32,91,119,114,97,112,112,101,100,32,119,105,116,104,32,34,43,114,43,34,93,32,42,47,92,110,34,41,41,44,116,40,110,44,101,41,125,102,117,110,99,116,105,111,110,32,67,101,40,110,41,123,118,97,114,32,116,61,48,44,114,61,48,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,68,105,40,41,44,117,61,49,54,45,40,101,45,114,41,59,105,102,40,114,61,101,44,48,60,117,41,123,105,102,40,56,48,48,60,61,43,43,116,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,48,93,125,101,108,115,101,32,116,61,48,59,114,101,116,117,114,110,32,110,46,97,112,112,108,121,40,84,44,97,114,103,117,109,101,110,116,115,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,110,44,116,41,123,118,97,114,32,114,61,45,49,44,101,61,110,46,108,101,110,103,116,104,44,117,61,101,45,49,59,102,111,114,40,116,61,116,61,61,61,84,63,101,58,116,59,43,43,114,60,116,59,41,123,118,97,114,32,101,61,105,114,40,114,44,117,41,44,105,61,110,91,101,93,59,110,91,101,93,61,110,91,114,93,44,110,91,114,93,61,105,125,114,101,116,117,114,110,32,110,46,108,101,110,103,116,104,61,116,44,110,125,102,117,110,99,116,105,111,110,32,77,101,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,119,117,40,110,41,41,114,101,116,117,114,110,32,110,59,118,97,114,32,116,61,110,43,34,34,59,114,101,116,117,114,110,34,48,34,61,61,116,38,38,49,47,110,61,61,45,36,63,34,45,48,34,58,116,125,102,117,110,99,116,105,111,110,32,84,101,40,110,41,123,105,102,40,110,117,108,108,33,61,110,41,123,116,114,121,123,114,101,116,117,114,110,32,105,105,46,99,97,108,108,40,110,41,125,99,97,116,99,104,40,110,41,123,125,10,114,101,116,117,114,110,32,110,43,34,34,125,114,101,116,117,114,110,34,34,125,102,117,110,99,116,105,111,110,32,36,101,40,110,44,116,41,123,114,101,116,117,114,110,32,114,40,78,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,34,95,46,34,43,114,91,48,93,59,116,38,114,91,49,93,38,38,33,111,40,110,44,101,41,38,38,110,46,112,117,115,104,40,101,41,125,41,44,110,46,115,111,114,116,40,41,125,102,117,110,99,116,105,111,110,32,70,101,40,110,41,123,105,102,40,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,41,114,101,116,117,114,110,32,110,46,99,108,111,110,101,40,41,59,118,97,114,32,116,61,110,101,119,32,79,110,40,110,46,95,95,119,114,97,112,112,101,100,95,95,44,110,46,95,95,99,104,97,105,110,95,95,41,59,114,101,116,117,114,110,32,116,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,110,46,95,95,97,99,116,105,111,110,115,95,95,41,44,116,46,95,95,105,110,100,101,120,95,95,61,110,46,95,95,105,110,100,101,120,95,95,44,116,46,95,95,118,97,108,117,101,115,95,95,61,110,46,95,95,118,97,108,117,101,115,95,95,44,116,125,102,117,110,99,116,105,111,110,32,78,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,95,40,110,44,121,101,40,116,44,51,41,44,114,41,41,58,45,49,125,102,117,110,99,116,105,111,110,32,80,101,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,45,49,59,114,101,116,117,114,110,32,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,114,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,95,40,110,44,121,101,40,116,44,51,41,44,117,44,116,114,117,101,41,125,102,117,110,99,116,105,111,110,32,90,101,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,49,41,58,91,93,125,102,117,110,99,116,105,111,110,32,113,101,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,110,91,48,93,58,84,125,102,117,110,99,116,105,111,110,32,86,101,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,110,91,116,45,49,93,58,84,125,102,117,110,99,116,105,111,110,32,75,101,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,41,58,110,125,102,117,110,99,116,105,111,110,32,71,101,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,36,105,46,99,97,108,108,40,110,41,125,102,117,110,99,116,105,111,110,32,72,101,40,110,41,123,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,116,61,48,59,114,101,116,117,114,110,32,110,61,105,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,104,117,40,110,41,41,114,101,116,117,114,110,32,116,61,85,105,40,110,46,108,101,110,103,116,104,44,116,41,44,116,114,117,101,125,41,44,65,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,99,40,110,44,98,40,116,41,41,125,41,125,102,117,110,99,116,105,111,110,32,74,101,40,116,44,114,41,123,105,102,40,33,116,124,124,33,116,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,101,61,72,101,40,116,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,114,63,101,58,99,40,101,44,102,117,110,99,116,105,111,110,40,116,41,123,10,114,101,116,117,114,110,32,110,40,114,44,84,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,89,101,40,110,41,123,114,101,116,117,114,110,32,110,61,65,110,40,110,41,44,110,46,95,95,99,104,97,105,110,95,95,61,116,114,117,101,44,110,125,102,117,110,99,116,105,111,110,32,81,101,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,125,102,117,110,99,116,105,111,110,32,88,101,40,41,123,114,101,116,117,114,110,32,116,104,105,115,125,102,117,110,99,116,105,111,110,32,110,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,114,58,117,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,116,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,101,58,105,111,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,114,117,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,99,58,71,116,41,40,110,44,121,101,40,116,44,51,41,41,125,102,117,110,99,116,105,111,110,32,101,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,116,61,110,38,38,110,117,108,108,61,61,116,63,110,46,108,101,110,103,116,104,58,116,44,102,101,40,110,44,49,50,56,44,84,44,84,44,84,44,84,44,116,41,125,102,117,110,99,116,105,111,110,32,117,117,40,110,44,116,41,123,118,97,114,32,114,59,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,48,60,45,45,110,38,38,40,114,61,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,44,49,62,61,110,38,38,40,116,61,84,41,44,10,114,125,125,102,117,110,99,116,105,111,110,32,105,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,56,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,105,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,111,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,114,63,84,58,116,44,110,61,102,101,40,110,44,49,54,44,84,44,84,44,84,44,84,44,84,44,116,41,44,110,46,112,108,97,99,101,104,111,108,100,101,114,61,111,117,46,112,108,97,99,101,104,111,108,100,101,114,44,110,125,102,117,110,99,116,105,111,110,32,102,117,40,110,44,116,44,114,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,118,97,114,32,114,61,99,44,101,61,97,59,114,101,116,117,114,110,32,99,61,97,61,84,44,95,61,116,44,115,61,110,46,97,112,112,108,121,40,101,44,114,41,125,102,117,110,99,116,105,111,110,32,117,40,110,41,123,118,97,114,32,114,61,110,45,112,59,114,101,116,117,114,110,32,110,45,61,95,44,112,61,61,61,84,124,124,114,62,61,116,124,124,48,62,114,124,124,103,38,38,110,62,61,108,125,102,117,110,99,116,105,111,110,32,105,40,41,123,118,97,114,32,110,61,71,111,40,41,59,105,102,40,117,40,110,41,41,114,101,116,117,114,110,32,111,40,110,41,59,118,97,114,32,114,44,101,61,98,111,59,114,61,110,45,95,44,110,61,116,45,40,110,45,112,41,44,114,61,103,63,67,105,40,110,44,108,45,114,41,58,110,44,104,61,101,40,105,44,114,41,125,102,117,110,99,116,105,111,110,32,111,40,110,41,123,114,101,116,117,114,110,32,104,61,84,44,100,38,38,99,63,101,40,110,41,58,40,99,61,97,61,84,44,115,41,125,102,117,110,99,116,105,111,110,32,102,40,41,123,118,97,114,32,110,61,71,111,40,41,44,114,61,117,40,110,41,59,105,102,40,99,61,97,114,103,117,109,101,110,116,115,44,10,97,61,116,104,105,115,44,112,61,110,44,114,41,123,105,102,40,104,61,61,61,84,41,114,101,116,117,114,110,32,95,61,110,61,112,44,104,61,98,111,40,105,44,116,41,44,118,63,101,40,110,41,58,115,59,105,102,40,103,41,114,101,116,117,114,110,32,108,111,40,104,41,44,104,61,98,111,40,105,44,116,41,44,101,40,112,41,125,114,101,116,117,114,110,32,104,61,61,61,84,38,38,40,104,61,98,111,40,105,44,116,41,41,44,115,125,118,97,114,32,99,44,97,44,108,44,115,44,104,44,112,44,95,61,48,44,118,61,102,97,108,115,101,44,103,61,102,97,108,115,101,44,100,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,83,117,40,116,41,124,124,48,44,100,117,40,114,41,38,38,40,118,61,33,33,114,46,108,101,97,100,105,110,103,44,108,61,40,103,61,34,109,97,120,87,97,105,116,34,105,110,32,114,41,63,85,105,40,83,117,40,114,46,109,97,120,87,97,105,116,41,124,124,48,44,116,41,58,108,44,100,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,100,41,44,102,46,99,97,110,99,101,108,61,102,117,110,99,116,105,111,110,40,41,123,104,33,61,61,84,38,38,108,111,40,104,41,44,95,61,48,44,99,61,112,61,97,61,104,61,84,125,44,102,46,102,108,117,115,104,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,104,61,61,61,84,63,115,58,111,40,71,111,40,41,41,125,44,102,125,102,117,110,99,116,105,111,110,32,99,117,40,110,44,116,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,44,117,61,116,63,116,46,97,112,112,108,121,40,116,104,105,115,44,101,41,58,101,91,48,93,44,105,61,114,46,99,97,99,104,101,59,10,114,101,116,117,114,110,32,105,46,104,97,115,40,117,41,63,105,46,103,101,116,40,117,41,58,40,101,61,110,46,97,112,112,108,121,40,116,104,105,115,44,101,41,44,114,46,99,97,99,104,101,61,105,46,115,101,116,40,117,44,101,41,124,124,105,44,101,41,125,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,124,124,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,99,97,99,104,101,61,110,101,119,40,99,117,46,67,97,99,104,101,124,124,70,110,41,44,114,125,102,117,110,99,116,105,111,110,32,97,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,97,114,103,117,109,101,110,116,115,59,115,119,105,116,99,104,40,116,46,108,101,110,103,116,104,41,123,99,97,115,101,32,48,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,41,59,99,97,115,101,32,49,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,41,59,99,97,115,101,32,50,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,41,59,99,97,115,101,32,51,58,114,101,116,117,114,110,33,110,46,99,97,108,108,40,116,104,105,115,44,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,125,114,101,116,117,114,110,33,110,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,102,117,110,99,116,105,111,110,32,108,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,110,33,61,61,110,38,38,116,33,61,61,116,59,10,125,102,117,110,99,116,105,111,110,32,115,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,103,117,40,110,46,108,101,110,103,116,104,41,38,38,33,95,117,40,110,41,125,102,117,110,99,116,105,111,110,32,104,117,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,115,117,40,110,41,125,102,117,110,99,116,105,111,110,32,112,117,40,110,41,123,105,102,40,33,121,117,40,110,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,118,97,114,32,116,61,79,116,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,69,114,114,111,114,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,68,79,77,69,120,99,101,112,116,105,111,110,93,34,61,61,116,124,124,116,121,112,101,111,102,32,110,46,109,101,115,115,97,103,101,61,61,34,115,116,114,105,110,103,34,38,38,116,121,112,101,111,102,32,110,46,110,97,109,101,61,61,34,115,116,114,105,110,103,34,38,38,33,120,117,40,110,41,125,102,117,110,99,116,105,111,110,32,95,117,40,110,41,123,114,101,116,117,114,110,33,33,100,117,40,110,41,38,38,40,110,61,79,116,40,110,41,44,34,91,111,98,106,101,99,116,32,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,71,101,110,101,114,97,116,111,114,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,65,115,121,110,99,70,117,110,99,116,105,111,110,93,34,61,61,110,124,124,34,91,111,98,106,101,99,116,32,80,114,111,120,121,93,34,61,61,110,41,125,102,117,110,99,116,105,111,110,32,118,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,110,61,61,69,117,40,110,41,125,102,117,110,99,116,105,111,110,32,103,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,45,49,60,110,38,38,48,61,61,110,37,49,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,59,10,125,102,117,110,99,116,105,111,110,32,100,117,40,110,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,110,59,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,40,34,111,98,106,101,99,116,34,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,116,41,125,102,117,110,99,116,105,111,110,32,121,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,116,121,112,101,111,102,32,110,61,61,34,111,98,106,101,99,116,34,125,102,117,110,99,116,105,111,110,32,98,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,78,117,109,98,101,114,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,120,117,40,110,41,123,114,101,116,117,114,110,33,40,33,121,117,40,110,41,124,124,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,33,61,79,116,40,110,41,41,38,38,40,110,61,100,105,40,110,41,44,110,117,108,108,61,61,61,110,124,124,40,110,61,111,105,46,99,97,108,108,40,110,44,34,99,111,110,115,116,114,117,99,116,111,114,34,41,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,44,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,38,38,110,32,105,110,115,116,97,110,99,101,111,102,32,110,38,38,105,105,46,99,97,108,108,40,110,41,61,61,108,105,41,41,125,102,117,110,99,116,105,111,110,32,106,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,33,102,102,40,110,41,38,38,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,116,114,105,110,103,93,34,61,61,79,116,40,110,41,125,102,117,110,99,116,105,111,110,32,119,117,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,115,121,109,98,111,108,34,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,83,121,109,98,111,108,93,34,61,61,79,116,40,110,41,59,10,125,102,117,110,99,116,105,111,110,32,109,117,40,110,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,77,40,110,41,58,85,114,40,110,41,59,105,102,40,119,105,38,38,110,91,119,105,93,41,123,110,61,110,91,119,105,93,40,41,59,102,111,114,40,118,97,114,32,116,44,114,61,91,93,59,33,40,116,61,110,46,110,101,120,116,40,41,41,46,100,111,110,101,59,41,114,46,112,117,115,104,40,116,46,118,97,108,117,101,41,59,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,32,116,61,118,111,40,110,41,44,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,63,87,58,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,85,58,85,117,41,40,110,41,125,102,117,110,99,116,105,111,110,32,65,117,40,110,41,123,114,101,116,117,114,110,32,110,63,40,110,61,83,117,40,110,41,44,110,61,61,61,36,124,124,110,61,61,61,45,36,63,49,46,55,57,55,54,57,51,49,51,52,56,54,50,51,49,53,55,101,51,48,56,42,40,48,62,110,63,45,49,58,49,41,58,110,61,61,61,110,63,110,58,48,41,58,48,61,61,61,110,63,110,58,48,125,102,117,110,99,116,105,111,110,32,69,117,40,110,41,123,110,61,65,117,40,110,41,59,118,97,114,32,116,61,110,37,49,59,114,101,116,117,114,110,32,110,61,61,61,110,63,116,63,110,45,116,58,110,58,48,125,102,117,110,99,116,105,111,110,32,107,117,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,48,44,52,50,57,52,57,54,55,50,57,53,41,58,48,125,102,117,110,99,116,105,111,110,32,83,117,40,110,41,123,105,102,40,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,41,114,101,116,117,114,110,32,110,59,105,102,40,119,117,40,110,41,41,114,101,116,117,114,110,32,70,59,105,102,40,100,117,40,110,41,38,38,40,110,61,116,121,112,101,111,102,32,110,46,118,97,108,117,101,79,102,61,61,34,102,117,110,99,116,105,111,110,34,63,110,46,118,97,108,117,101,79,102,40,41,58,110,44,10,110,61,100,117,40,110,41,63,110,43,34,34,58,110,41,44,116,121,112,101,111,102,32,110,33,61,34,115,116,114,105,110,103,34,41,114,101,116,117,114,110,32,48,61,61,61,110,63,110,58,43,110,59,110,61,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,59,118,97,114,32,116,61,103,110,46,116,101,115,116,40,110,41,59,114,101,116,117,114,110,32,116,124,124,121,110,46,116,101,115,116,40,110,41,63,68,110,40,110,46,115,108,105,99,101,40,50,41,44,116,63,50,58,56,41,58,118,110,46,116,101,115,116,40,110,41,63,70,58,43,110,125,102,117,110,99,116,105,111,110,32,79,117,40,110,41,123,114,101,116,117,114,110,32,67,114,40,110,44,66,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,73,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,121,114,40,110,41,125,102,117,110,99,116,105,111,110,32,82,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,44,110,61,61,61,84,63,114,58,110,125,102,117,110,99,116,105,111,110,32,122,117,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,122,116,41,125,102,117,110,99,116,105,111,110,32,87,117,40,110,41,123,114,101,116,117,114,110,32,115,117,40,110,41,63,113,110,40,110,41,58,86,116,40,110,41,125,102,117,110,99,116,105,111,110,32,66,117,40,110,41,123,105,102,40,115,117,40,110,41,41,110,61,113,110,40,110,44,116,114,117,101,41,59,101,108,115,101,32,105,102,40,100,117,40,110,41,41,123,118,97,114,32,116,44,114,61,122,101,40,110,41,44,101,61,91,93,59,102,111,114,40,116,32,105,110,32,110,41,40,34,99,111,110,115,116,114,117,99,116,111,114,34,33,61,116,124,124,33,114,38,38,111,105,46,99,97,108,108,40,110,44,116,41,41,38,38,101,46,112,117,115,104,40,116,41,59,110,61,101,125,101,108,115,101,123,105,102,40,116,61,91,93,44,10,110,117,108,108,33,61,110,41,102,111,114,40,114,32,105,110,32,81,117,40,110,41,41,116,46,112,117,115,104,40,114,41,59,110,61,116,125,114,101,116,117,114,110,32,110,125,102,117,110,99,116,105,111,110,32,76,117,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,123,125,59,118,97,114,32,114,61,99,40,118,101,40,110,41,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,91,110,93,125,41,59,114,101,116,117,114,110,32,116,61,121,101,40,116,41,44,116,114,40,110,44,114,44,102,117,110,99,116,105,111,110,40,110,44,114,41,123,114,101,116,117,114,110,32,116,40,110,44,114,91,48,93,41,125,41,125,102,117,110,99,116,105,111,110,32,85,117,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,87,117,40,110,41,41,125,102,117,110,99,116,105,111,110,32,67,117,40,110,41,123,114,101,116,117,114,110,32,36,102,40,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,41,125,102,117,110,99,116,105,111,110,32,68,117,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,110,46,114,101,112,108,97,99,101,40,120,110,44,88,110,41,46,114,101,112,108,97,99,101,40,83,110,44,34,34,41,125,102,117,110,99,116,105,111,110,32,77,117,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,116,61,114,63,84,58,116,44,116,61,61,61,84,63,122,110,46,116,101,115,116,40,110,41,63,110,46,109,97,116,99,104,40,73,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,115,110,41,124,124,91,93,58,110,46,109,97,116,99,104,40,116,41,124,124,91,93,125,102,117,110,99,116,105,111,110,32,84,117,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,125,125,102,117,110,99,116,105,111,110,32,36,117,40,110,41,123,114,101,116,117,114,110,32,110,59,10,125,102,117,110,99,116,105,111,110,32,70,117,40,110,41,123,114,101,116,117,114,110,32,113,116,40,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,58,95,116,40,110,44,49,41,41,125,102,117,110,99,116,105,111,110,32,78,117,40,110,44,116,44,101,41,123,118,97,114,32,117,61,87,117,40,116,41,44,105,61,69,116,40,116,44,117,41,59,110,117,108,108,33,61,101,124,124,100,117,40,116,41,38,38,40,105,46,108,101,110,103,116,104,124,124,33,117,46,108,101,110,103,116,104,41,124,124,40,101,61,116,44,116,61,110,44,110,61,116,104,105,115,44,105,61,69,116,40,116,44,87,117,40,116,41,41,41,59,118,97,114,32,111,61,33,40,100,117,40,101,41,38,38,34,99,104,97,105,110,34,105,110,32,101,38,38,33,101,46,99,104,97,105,110,41,44,102,61,95,117,40,110,41,59,114,101,116,117,114,110,32,114,40,105,44,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,101,61,116,91,114,93,59,110,91,114,93,61,101,44,102,38,38,40,110,46,112,114,111,116,111,116,121,112,101,91,114,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,59,105,102,40,111,124,124,116,41,123,118,97,114,32,114,61,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,40,114,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,41,46,112,117,115,104,40,123,102,117,110,99,58,101,44,97,114,103,115,58,97,114,103,117,109,101,110,116,115,44,116,104,105,115,65,114,103,58,110,125,41,44,114,46,95,95,99,104,97,105,110,95,95,61,116,44,114,125,114,101,116,117,114,110,32,101,46,97,112,112,108,121,40,110,44,97,40,91,116,104,105,115,46,118,97,108,117,101,40,41,93,44,97,114,103,117,109,101,110,116,115,41,41,125,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,80,117,40,41,123,125,10,102,117,110,99,116,105,111,110,32,90,117,40,110,41,123,114,101,116,117,114,110,32,73,101,40,110,41,63,98,40,77,101,40,110,41,41,58,114,114,40,110,41,125,102,117,110,99,116,105,111,110,32,113,117,40,41,123,114,101,116,117,114,110,91,93,125,102,117,110,99,116,105,111,110,32,86,117,40,41,123,114,101,116,117,114,110,32,102,97,108,115,101,125,109,110,61,110,117,108,108,61,61,109,110,63,36,110,58,114,116,46,100,101,102,97,117,108,116,115,40,36,110,46,79,98,106,101,99,116,40,41,44,109,110,44,114,116,46,112,105,99,107,40,36,110,44,87,110,41,41,59,118,97,114,32,75,117,61,109,110,46,65,114,114,97,121,44,71,117,61,109,110,46,68,97,116,101,44,72,117,61,109,110,46,69,114,114,111,114,44,74,117,61,109,110,46,70,117,110,99,116,105,111,110,44,89,117,61,109,110,46,77,97,116,104,44,81,117,61,109,110,46,79,98,106,101,99,116,44,88,117,61,109,110,46,82,101,103,69,120,112,44,110,105,61,109,110,46,83,116,114,105,110,103,44,116,105,61,109,110,46,84,121,112,101,69,114,114,111,114,44,114,105,61,75,117,46,112,114,111,116,111,116,121,112,101,44,101,105,61,81,117,46,112,114,111,116,111,116,121,112,101,44,117,105,61,109,110,91,34,95,95,99,111,114,101,45,106,115,95,115,104,97,114,101,100,95,95,34,93,44,105,105,61,74,117,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,44,111,105,61,101,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,44,102,105,61,48,44,99,105,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,47,91,94,46,93,43,36,47,46,101,120,101,99,40,117,105,38,38,117,105,46,107,101,121,115,38,38,117,105,46,107,101,121,115,46,73,69,95,80,82,79,84,79,124,124,34,34,41,59,114,101,116,117,114,110,32,110,63,34,83,121,109,98,111,108,40,115,114,99,41,95,49,46,34,43,110,58,34,34,125,40,41,44,97,105,61,101,105,46,116,111,83,116,114,105,110,103,44,108,105,61,105,105,46,99,97,108,108,40,81,117,41,44,115,105,61,36,110,46,95,44,104,105,61,88,117,40,34,94,34,43,105,105,46,99,97,108,108,40,111,105,41,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,46,114,101,112,108,97,99,101,40,47,104,97,115,79,119,110,80,114,111,112,101,114,116,121,124,40,102,117,110,99,116,105,111,110,41,46,42,63,40,63,61,92,92,92,40,41,124,32,102,111,114,32,46,43,63,40,63,61,92,92,92,93,41,47,103,44,34,36,49,46,42,63,34,41,43,34,36,34,41,44,112,105,61,80,110,63,109,110,46,66,117,102,102,101,114,58,84,44,95,105,61,109,110,46,83,121,109,98,111,108,44,118,105,61,109,110,46,85,105,110,116,56,65,114,114,97,121,44,103,105,61,112,105,63,112,105,46,103,58,84,44,100,105,61,66,40,81,117,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,44,81,117,41,44,121,105,61,81,117,46,99,114,101,97,116,101,44,98,105,61,101,105,46,112,114,111,112,101,114,116,121,73,115,69,110,117,109,101,114,97,98,108,101,44,120,105,61,114,105,46,115,112,108,105,99,101,44,106,105,61,95,105,63,95,105,46,105,115,67,111,110,99,97,116,83,112,114,101,97,100,97,98,108,101,58,84,44,119,105,61,95,105,63,95,105,46,105,116,101,114,97,116,111,114,58,84,44,109,105,61,95,105,63,95,105,46,116,111,83,116,114,105,110,103,84,97,103,58,84,44,65,105,61,102,117,110,99,116,105,111,110,40,41,123,10,116,114,121,123,118,97,114,32,110,61,106,101,40,81,117,44,34,100,101,102,105,110,101,80,114,111,112,101,114,116,121,34,41,59,114,101,116,117,114,110,32,110,40,123,125,44,34,34,44,123,125,41,44,110,125,99,97,116,99,104,40,110,41,123,125,125,40,41,44,69,105,61,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,33,61,61,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,38,38,109,110,46,99,108,101,97,114,84,105,109,101,111,117,116,44,107,105,61,71,117,38,38,71,117,46,110,111,119,33,61,61,36,110,46,68,97,116,101,46,110,111,119,38,38,71,117,46,110,111,119,44,83,105,61,109,110,46,115,101,116,84,105,109,101,111,117,116,33,61,61,36,110,46,115,101,116,84,105,109,101,111,117,116,38,38,109,110,46,115,101,116,84,105,109,101,111,117,116,44,79,105,61,89,117,46,99,101,105,108,44,73,105,61,89,117,46,102,108,111,111,114,44,82,105,61,81,117,46,103,101,116,79,119,110,80,114,111,112,101,114,116,121,83,121,109,98,111,108,115,44,122,105,61,112,105,63,112,105,46,105,115,66,117,102,102,101,114,58,84,44,87,105,61,109,110,46,105,115,70,105,110,105,116,101,44,66,105,61,114,105,46,106,111,105,110,44,76,105,61,66,40,81,117,46,107,101,121,115,44,81,117,41,44,85,105,61,89,117,46,109,97,120,44,67,105,61,89,117,46,109,105,110,44,68,105,61,71,117,46,110,111,119,44,77,105,61,109,110,46,112,97,114,115,101,73,110,116,44,84,105,61,89,117,46,114,97,110,100,111,109,44,36,105,61,114,105,46,114,101,118,101,114,115,101,44,70,105,61,106,101,40,109,110,44,34,68,97,116,97,86,105,101,119,34,41,44,78,105,61,106,101,40,109,110,44,34,77,97,112,34,41,44,80,105,61,106,101,40,109,110,44,34,80,114,111,109,105,115,101,34,41,44,90,105,61,106,101,40,109,110,44,34,83,101,116,34,41,44,113,105,61,106,101,40,109,110,44,34,87,101,97,107,77,97,112,34,41,44,86,105,61,106,101,40,81,117,44,34,99,114,101,97,116,101,34,41,44,75,105,61,113,105,38,38,110,101,119,32,113,105,44,71,105,61,123,125,44,72,105,61,84,101,40,70,105,41,44,74,105,61,84,101,40,78,105,41,44,89,105,61,84,101,40,80,105,41,44,81,105,61,84,101,40,90,105,41,44,88,105,61,84,101,40,113,105,41,44,110,111,61,95,105,63,95,105,46,112,114,111,116,111,116,121,112,101,58,84,44,116,111,61,110,111,63,110,111,46,118,97,108,117,101,79,102,58,84,44,114,111,61,110,111,63,110,111,46,116,111,83,116,114,105,110,103,58,84,44,101,111,61,102,117,110,99,116,105,111,110,40,41,123,10,102,117,110,99,116,105,111,110,32,110,40,41,123,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,100,117,40,116,41,63,121,105,63,121,105,40,116,41,58,40,110,46,112,114,111,116,111,116,121,112,101,61,116,44,116,61,110,101,119,32,110,44,110,46,112,114,111,116,111,116,121,112,101,61,84,44,116,41,58,123,125,125,125,40,41,59,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,61,123,101,115,99,97,112,101,58,74,44,101,118,97,108,117,97,116,101,58,89,44,105,110,116,101,114,112,111,108,97,116,101,58,81,44,118,97,114,105,97,98,108,101,58,34,34,44,105,109,112,111,114,116,115,58,123,95,58,65,110,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,61,69,110,46,112,114,111,116,111,116,121,112,101,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,65,110,44,79,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,79,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,79,110,44,85,110,46,112,114,111,116,111,116,121,112,101,61,101,111,40,69,110,46,112,114,111,116,111,116,121,112,101,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,110,115,116,114,117,99,116,111,114,61,85,110,44,77,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,86,105,63,86,105,40,110,117,108,108,41,58,123,125,44,116,104,105,115,46,115,105,122,101,61,48,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,116,104,105,115,46,104,97,115,40,110,41,38,38,100,101,108,101,116,101,32,116,104,105,115,46,95,95,100,97,116,97,95,95,91,110,93,44,10,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,40,110,61,116,91,110,93,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,61,61,61,110,63,84,58,110,41,58,111,105,46,99,97,108,108,40,116,44,110,41,63,116,91,110,93,58,84,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,86,105,63,116,91,110,93,33,61,61,84,58,111,105,46,99,97,108,108,40,116,44,110,41,125,44,77,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,116,104,105,115,46,115,105,122,101,43,61,116,104,105,115,46,104,97,115,40,110,41,63,48,58,49,44,114,91,110,93,61,86,105,38,38,116,61,61,61,84,63,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,58,116,44,116,104,105,115,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,91,93,44,116,104,105,115,46,115,105,122,101,61,48,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,33,40,48,62,110,41,38,38,40,110,61,61,116,46,108,101,110,103,116,104,45,49,63,116,46,112,111,112,40,41,58,120,105,46,99,97,108,108,40,116,44,110,44,49,41,44,10,45,45,116,104,105,115,46,115,105,122,101,44,116,114,117,101,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,102,116,40,116,44,110,41,44,48,62,110,63,84,58,116,91,110,93,91,49,93,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,45,49,60,102,116,40,116,104,105,115,46,95,95,100,97,116,97,95,95,44,110,41,125,44,84,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,44,101,61,102,116,40,114,44,110,41,59,114,101,116,117,114,110,32,48,62,101,63,40,43,43,116,104,105,115,46,115,105,122,101,44,114,46,112,117,115,104,40,91,110,44,116,93,41,41,58,114,91,101,93,91,49,93,61,116,44,116,104,105,115,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,115,105,122,101,61,48,44,116,104,105,115,46,95,95,100,97,116,97,95,95,61,123,104,97,115,104,58,110,101,119,32,77,110,44,109,97,112,58,110,101,119,40,78,105,124,124,84,110,41,44,115,116,114,105,110,103,58,110,101,119,32,77,110,125,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,98,101,40,116,104,105,115,44,110,41,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,45,61,110,63,49,58,48,44,110,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,103,101,116,40,110,41,59,10,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,101,40,116,104,105,115,44,110,41,46,104,97,115,40,110,41,125,44,70,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,98,101,40,116,104,105,115,44,110,41,44,101,61,114,46,115,105,122,101,59,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,43,61,114,46,115,105,122,101,61,61,101,63,48,58,49,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,97,100,100,61,78,110,46,112,114,111,116,111,116,121,112,101,46,112,117,115,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,115,101,116,40,110,44,34,95,95,108,111,100,97,115,104,95,104,97,115,104,95,117,110,100,101,102,105,110,101,100,95,95,34,41,44,116,104,105,115,125,44,78,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,99,108,101,97,114,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,84,110,44,116,104,105,115,46,115,105,122,101,61,48,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,100,101,108,101,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,114,101,116,117,114,110,32,110,61,116,46,100,101,108,101,116,101,40,110,41,44,116,104,105,115,46,115,105,122,101,61,116,46,115,105,122,101,44,110,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,103,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,103,101,116,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,100,97,116,97,95,95,46,104,97,115,40,110,41,125,44,90,110,46,112,114,111,116,111,116,121,112,101,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,59,105,102,40,114,32,105,110,115,116,97,110,99,101,111,102,32,84,110,41,123,118,97,114,32,101,61,114,46,95,95,100,97,116,97,95,95,59,105,102,40,33,78,105,124,124,49,57,57,62,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,101,46,112,117,115,104,40,91,110,44,116,93,41,44,116,104,105,115,46,115,105,122,101,61,43,43,114,46,115,105,122,101,44,116,104,105,115,59,114,61,116,104,105,115,46,95,95,100,97,116,97,95,95,61,110,101,119,32,70,110,40,101,41,125,114,101,116,117,114,110,32,114,46,115,101,116,40,110,44,116,41,44,116,104,105,115,46,115,105,122,101,61,114,46,115,105,122,101,44,116,104,105,115,125,59,118,97,114,32,117,111,61,70,114,40,109,116,41,44,105,111,61,70,114,40,65,116,44,116,114,117,101,41,44,111,111,61,78,114,40,41,44,102,111,61,78,114,40,116,114,117,101,41,44,99,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,75,105,46,115,101,116,40,110,44,116,41,44,110,125,58,36,117,44,97,111,61,65,105,63,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,105,40,110,44,34,116,111,83,116,114,105,110,103,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,116,114,117,101,44,101,110,117,109,101,114,97,98,108,101,58,102,97,108,115,101,44,118,97,108,117,101,58,84,117,40,116,41,44,119,114,105,116,97,98,108,101,58,116,114,117,101,125,41,125,58,36,117,44,108,111,61,69,105,124,124,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,36,110,46,99,108,101,97,114,84,105,109,101,111,117,116,40,110,41,125,44,115,111,61,90,105,38,38,49,47,85,40,110,101,119,32,90,105,40,91,44,45,48,93,41,41,91,49,93,61,61,36,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,101,119,32,90,105,40,110,41,125,58,80,117,44,104,111,61,75,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,75,105,46,103,101,116,40,110,41,125,58,80,117,44,112,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,110,61,81,117,40,110,41,44,105,40,82,105,40,110,41,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,98,105,46,99,97,108,108,40,110,44,116,41,125,41,41,125,58,113,117,44,95,111,61,82,105,63,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,91,93,59,110,59,41,97,40,116,44,112,111,40,110,41,41,44,110,61,100,105,40,110,41,59,114,101,116,117,114,110,32,116,125,58,113,117,44,118,111,61,79,116,59,40,70,105,38,38,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,33,61,118,111,40,110,101,119,32,70,105,40,110,101,119,32,65,114,114,97,121,66,117,102,102,101,114,40,49,41,41,41,124,124,78,105,38,38,34,91,111,98,106,101,99,116,32,77,97,112,93,34,33,61,118,111,40,110,101,119,32,78,105,41,124,124,80,105,38,38,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,33,61,118,111,40,80,105,46,114,101,115,111,108,118,101,40,41,41,124,124,90,105,38,38,34,91,111,98,106,101,99,116,32,83,101,116,93,34,33,61,118,111,40,110,101,119,32,90,105,41,124,124,113,105,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,33,61,118,111,40,110,101,119,32,113,105,41,41,38,38,40,118,111,61,102,117,110,99,116,105,111,110,40,110,41,123,10,118,97,114,32,116,61,79,116,40,110,41,59,105,102,40,110,61,40,110,61,34,91,111,98,106,101,99,116,32,79,98,106,101,99,116,93,34,61,61,116,63,110,46,99,111,110,115,116,114,117,99,116,111,114,58,84,41,63,84,101,40,110,41,58,34,34,41,115,119,105,116,99,104,40,110,41,123,99,97,115,101,32,72,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,68,97,116,97,86,105,101,119,93,34,59,99,97,115,101,32,74,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,59,99,97,115,101,32,89,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,59,99,97,115,101,32,81,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,83,101,116,93,34,59,99,97,115,101,32,88,105,58,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,125,114,101,116,117,114,110,32,116,125,41,59,118,97,114,32,103,111,61,117,105,63,95,117,58,86,117,44,121,111,61,67,101,40,99,111,41,44,98,111,61,83,105,124,124,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,36,110,46,115,101,116,84,105,109,101,111,117,116,40,110,44,116,41,125,44,120,111,61,67,101,40,97,111,41,44,106,111,61,102,117,110,99,116,105,111,110,40,110,41,123,110,61,99,117,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,53,48,48,61,61,61,116,46,115,105,122,101,38,38,116,46,99,108,101,97,114,40,41,44,110,125,41,59,118,97,114,32,116,61,110,46,99,97,99,104,101,59,114,101,116,117,114,110,32,110,125,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,52,54,61,61,61,110,46,99,104,97,114,67,111,100,101,65,116,40,48,41,38,38,116,46,112,117,115,104,40,34,34,41,44,110,46,114,101,112,108,97,99,101,40,116,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,101,44,117,41,123,10,116,46,112,117,115,104,40,101,63,117,46,114,101,112,108,97,99,101,40,104,110,44,34,36,49,34,41,58,114,124,124,110,41,125,41,44,116,125,41,44,119,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,41,58,91,93,125,41,44,109,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,114,44,50,41,41,58,91,93,125,41,44,65,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,86,101,40,116,41,59,114,101,116,117,114,110,32,104,117,40,114,41,38,38,40,114,61,84,41,44,104,117,40,110,41,63,121,116,40,110,44,119,116,40,116,44,49,44,104,117,44,116,114,117,101,41,44,84,44,114,41,58,91,93,125,41,44,69,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,46,108,101,110,103,116,104,38,38,116,91,48,93,61,61,61,110,91,48,93,63,87,116,40,116,41,58,91,93,125,41,44,107,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,32,116,61,61,61,86,101,40,114,41,63,116,61,84,58,114,46,112,111,112,40,41,44,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,121,101,40,116,44,50,41,41,58,91,93,125,41,44,83,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,114,61,99,40,110,44,69,114,41,59,114,101,116,117,114,110,40,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,41,38,38,114,46,112,111,112,40,41,44,10,114,46,108,101,110,103,116,104,38,38,114,91,48,93,61,61,61,110,91,48,93,63,87,116,40,114,44,84,44,116,41,58,91,93,125,41,44,79,111,61,102,114,40,75,101,41,44,73,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,104,116,40,110,44,116,41,59,114,101,116,117,114,110,32,117,114,40,110,44,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,83,101,40,110,44,114,41,63,43,110,58,110,125,41,46,115,111,114,116,40,87,114,41,41,44,101,125,41,44,82,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,41,125,41,44,122,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,121,101,40,116,44,50,41,41,125,41,44,87,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,98,114,40,119,116,40,110,44,49,44,104,117,44,116,114,117,101,41,44,84,44,116,41,125,41,44,66,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,104,117,40,110,41,63,121,116,40,110,44,116,41,58,91,93,125,41,44,76,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,41,125,41,44,85,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,59,114,101,116,117,114,110,32,104,117,40,116,41,38,38,40,116,61,84,41,44,10,109,114,40,105,40,110,44,104,117,41,44,121,101,40,116,44,50,41,41,125,41,44,67,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,86,101,40,110,41,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,59,114,101,116,117,114,110,32,109,114,40,105,40,110,44,104,117,41,44,84,44,116,41,125,41,44,68,111,61,102,114,40,72,101,41,44,77,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,46,108,101,110,103,116,104,44,116,61,49,60,116,63,110,91,116,45,49,93,58,84,44,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,40,110,46,112,111,112,40,41,44,116,41,58,84,59,114,101,116,117,114,110,32,74,101,40,110,44,116,41,125,41,44,84,111,61,112,101,40,102,117,110,99,116,105,111,110,40,110,41,123,102,117,110,99,116,105,111,110,32,116,40,116,41,123,114,101,116,117,114,110,32,104,116,40,116,44,110,41,125,118,97,114,32,114,61,110,46,108,101,110,103,116,104,44,101,61,114,63,110,91,48,93,58,48,44,117,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,33,40,49,60,114,124,124,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,41,38,38,117,32,105,110,115,116,97,110,99,101,111,102,32,85,110,38,38,83,101,40,101,41,63,40,117,61,117,46,115,108,105,99,101,40,101,44,43,101,43,40,114,63,49,58,48,41,41,44,117,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,117,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,46,116,104,114,117,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,114,38,38,33,110,46,108,101,110,103,116,104,38,38,110,46,112,117,115,104,40,84,41,44,10,110,125,41,41,58,116,104,105,115,46,116,104,114,117,40,116,41,125,41,44,36,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,43,43,110,91,114,93,58,115,116,40,110,44,114,44,49,41,125,41,44,70,111,61,71,114,40,78,101,41,44,78,111,61,71,114,40,80,101,41,44,80,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,111,105,46,99,97,108,108,40,110,44,114,41,63,110,91,114,93,46,112,117,115,104,40,116,41,58,115,116,40,110,44,114,44,91,116,93,41,125,41,44,90,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,44,101,41,123,118,97,114,32,117,61,45,49,44,105,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,44,111,61,115,117,40,116,41,63,75,117,40,116,46,108,101,110,103,116,104,41,58,91,93,59,114,101,116,117,114,110,32,117,111,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,111,91,43,43,117,93,61,105,63,110,40,114,44,116,44,101,41,58,76,116,40,116,44,114,44,101,41,125,41,44,111,125,41,44,113,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,115,116,40,110,44,114,44,116,41,125,41,44,86,111,61,84,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,91,114,63,48,58,49,93,46,112,117,115,104,40,116,41,125,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,91,91,93,44,91,93,93,125,41,44,75,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,49,60,114,38,38,79,101,40,110,44,116,91,48,93,44,116,91,49,93,41,63,116,61,91,93,58,50,60,114,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,116,91,50,93,41,38,38,40,116,61,91,116,91,48,93,93,41,44,10,88,116,40,110,44,119,116,40,116,44,49,41,44,91,93,41,125,41,44,71,111,61,107,105,124,124,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,68,97,116,101,46,110,111,119,40,41,125,44,72,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,49,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,72,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,110,44,101,44,116,44,114,44,117,41,125,41,44,74,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,51,59,105,102,40,114,46,108,101,110,103,116,104,41,118,97,114,32,117,61,76,40,114,44,100,101,40,74,111,41,41,44,101,61,51,50,124,101,59,114,101,116,117,114,110,32,102,101,40,116,44,101,44,110,44,114,44,117,41,125,41,44,89,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,100,116,40,110,44,49,44,116,41,125,41,44,81,111,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,100,116,40,110,44,83,117,40,116,41,124,124,48,44,114,41,125,41,59,99,117,46,67,97,99,104,101,61,70,110,59,118,97,114,32,88,111,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,114,61,49,61,61,114,46,108,101,110,103,116,104,38,38,102,102,40,114,91,48,93,41,63,99,40,114,91,48,93,44,107,40,121,101,40,41,41,41,58,99,40,119,116,40,114,44,49,41,44,107,40,121,101,40,41,41,41,59,118,97,114,32,101,61,114,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,102,114,40,102,117,110,99,116,105,111,110,40,117,41,123,102,111,114,40,118,97,114,32,105,61,45,49,44,111,61,67,105,40,117,46,108,101,110,103,116,104,44,101,41,59,43,43,105,60,111,59,41,117,91,105,93,61,114,91,105,93,46,99,97,108,108,40,116,104,105,115,44,117,91,105,93,41,59,10,114,101,116,117,114,110,32,110,40,116,44,116,104,105,115,44,117,41,125,41,125,41,44,110,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,51,50,44,84,44,116,44,76,40,116,44,100,101,40,110,102,41,41,41,125,41,44,116,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,54,52,44,84,44,116,44,76,40,116,44,100,101,40,116,102,41,41,41,125,41,44,114,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,101,40,110,44,50,53,54,44,84,44,84,44,84,44,116,41,125,41,44,101,102,61,101,101,40,73,116,41,44,117,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,62,61,116,125,41,44,111,102,61,85,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,125,40,41,41,63,85,116,58,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,111,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,38,38,33,98,105,46,99,97,108,108,40,110,44,34,99,97,108,108,101,101,34,41,125,44,102,102,61,75,117,46,105,115,65,114,114,97,121,44,99,102,61,86,110,63,107,40,86,110,41,58,67,116,44,97,102,61,122,105,124,124,86,117,44,108,102,61,75,110,63,107,40,75,110,41,58,68,116,44,115,102,61,71,110,63,107,40,71,110,41,58,84,116,44,104,102,61,72,110,63,107,40,72,110,41,58,78,116,44,112,102,61,74,110,63,107,40,74,110,41,58,80,116,44,95,102,61,89,110,63,107,40,89,110,41,58,90,116,44,118,102,61,101,101,40,75,116,41,44,103,102,61,101,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,60,61,116,125,41,44,100,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,105,102,40,122,101,40,116,41,124,124,115,117,40,116,41,41,67,114,40,116,44,87,117,40,116,41,44,110,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,111,105,46,99,97,108,108,40,116,44,114,41,38,38,111,116,40,110,44,114,44,116,91,114,93,41,125,41,44,121,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,67,114,40,116,44,66,117,40,116,41,44,110,41,125,41,44,98,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,66,117,40,116,41,44,110,44,101,41,125,41,44,120,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,67,114,40,116,44,87,117,40,116,41,44,110,44,101,41,125,41,44,106,102,61,112,101,40,104,116,41,44,119,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,81,117,40,110,41,59,118,97,114,32,114,61,45,49,44,101,61,116,46,108,101,110,103,116,104,44,117,61,50,60,101,63,116,91,50,93,58,84,59,102,111,114,40,117,38,38,79,101,40,116,91,48,93,44,116,91,49,93,44,117,41,38,38,40,101,61,49,41,59,43,43,114,60,101,59,41,102,111,114,40,118,97,114,32,117,61,116,91,114,93,44,105,61,66,117,40,117,41,44,111,61,45,49,44,102,61,105,46,108,101,110,103,116,104,59,43,43,111,60,102,59,41,123,118,97,114,32,99,61,105,91,111,93,44,97,61,110,91,99,93,59,40,97,61,61,61,84,124,124,108,117,40,97,44,101,105,91,99,93,41,38,38,33,111,105,46,99,97,108,108,40,110,44,99,41,41,38,38,40,110,91,99,93,61,117,91,99,93,41,125,114,101,116,117,114,110,32,110,125,41,44,109,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,46,112,117,115,104,40,84,44,97,101,41,44,110,40,79,102,44,84,44,116,41,125,41,44,65,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,110,91,116,93,61,114,125,44,84,117,40,36,117,41,41,44,69,102,61,89,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,117,108,108,33,61,116,38,38,116,121,112,101,111,102,32,116,46,116,111,83,116,114,105,110,103,33,61,34,102,117,110,99,116,105,111,110,34,38,38,40,116,61,97,105,46,99,97,108,108,40,116,41,41,44,111,105,46,99,97,108,108,40,110,44,116,41,63,110,91,116,93,46,112,117,115,104,40,114,41,58,110,91,116,93,61,91,114,93,125,44,121,101,41,44,107,102,61,102,114,40,76,116,41,44,83,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,89,116,40,110,44,116,44,114,41,125,41,44,79,102,61,36,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,89,116,40,110,44,116,44,114,44,101,41,125,41,44,73,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,102,97,108,115,101,59,116,61,99,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,61,83,114,40,116,44,110,41,44,101,124,124,40,101,61,49,60,116,46,108,101,110,103,116,104,41,44,116,125,41,44,67,114,40,110,44,118,101,40,110,41,44,114,41,44,101,38,38,40,114,61,95,116,40,114,44,55,44,108,101,41,41,59,102,111,114,40,118,97,114,32,117,61,116,46,108,101,110,103,116,104,59,117,45,45,59,41,120,114,40,114,44,116,91,117,93,41,59,114,101,116,117,114,110,32,114,125,41,44,82,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,123,125,58,110,114,40,110,44,116,41,59,10,125,41,44,122,102,61,111,101,40,87,117,41,44,87,102,61,111,101,40,66,117,41,44,66,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,44,110,43,40,114,63,67,117,40,116,41,58,116,41,125,41,44,76,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,45,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,85,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,67,102,61,90,114,40,34,116,111,76,111,119,101,114,67,97,115,101,34,41,44,68,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,95,34,58,34,34,41,43,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,41,44,77,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,36,102,40,116,41,125,41,44,84,102,61,113,114,40,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,43,40,114,63,34,32,34,58,34,34,41,43,116,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,41,44,36,102,61,90,114,40,34,116,111,85,112,112,101,114,67,97,115,101,34,41,44,70,102,61,102,114,40,102,117,110,99,116,105,111,110,40,116,44,114,41,123,116,114,121,123,114,101,116,117,114,110,32,110,40,116,44,84,44,114,41,125,99,97,116,99,104,40,110,41,123,114,101,116,117,114,110,32,112,117,40,110,41,63,110,58,110,101,119,32,72,117,40,110,41,125,125,41,44,78,102,61,112,101,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,114,101,116,117,114,110,32,114,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,116,61,77,101,40,116,41,44,115,116,40,110,44,116,44,72,111,40,110,91,116,93,44,110,41,41,125,41,44,110,125,41,44,80,102,61,72,114,40,41,44,90,102,61,72,114,40,116,114,117,101,41,44,113,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,125,41,44,86,102,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,110,44,114,44,116,41,125,125,41,44,75,102,61,88,114,40,99,41,44,71,102,61,88,114,40,117,41,44,72,102,61,88,114,40,104,41,44,74,102,61,114,101,40,41,44,89,102,61,114,101,40,116,114,117,101,41,44,81,102,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,43,116,125,44,48,41,44,88,102,61,105,101,40,34,99,101,105,108,34,41,44,110,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,47,116,125,44,49,41,44,116,99,61,105,101,40,34,102,108,111,111,114,34,41,44,114,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,42,116,125,44,49,41,44,101,99,61,105,101,40,34,114,111,117,110,100,34,41,44,117,99,61,81,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,45,116,125,44,48,41,59,114,101,116,117,114,110,32,65,110,46,97,102,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,10,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,117,110,99,116,105,111,110,40,41,123,105,102,40,49,62,45,45,110,41,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,125,44,65,110,46,97,114,121,61,101,117,44,65,110,46,97,115,115,105,103,110,61,100,102,44,65,110,46,97,115,115,105,103,110,73,110,61,121,102,44,65,110,46,97,115,115,105,103,110,73,110,87,105,116,104,61,98,102,44,65,110,46,97,115,115,105,103,110,87,105,116,104,61,120,102,44,65,110,46,97,116,61,106,102,44,65,110,46,98,101,102,111,114,101,61,117,117,44,65,110,46,98,105,110,100,61,72,111,44,65,110,46,98,105,110,100,65,108,108,61,78,102,44,65,110,46,98,105,110,100,75,101,121,61,74,111,44,65,110,46,99,97,115,116,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,41,114,101,116,117,114,110,91,93,59,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,48,93,59,114,101,116,117,114,110,32,102,102,40,110,41,63,110,58,91,110,93,125,44,65,110,46,99,104,97,105,110,61,89,101,44,65,110,46,99,104,117,110,107,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,85,105,40,69,117,40,116,41,44,48,41,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,33,114,124,124,49,62,116,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,101,61,48,44,117,61,48,44,105,61,75,117,40,79,105,40,114,47,116,41,41,59,101,60,114,59,41,105,91,117,43,43,93,61,104,114,40,110,44,101,44,101,43,61,116,41,59,114,101,116,117,114,110,32,105,125,44,65,110,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,48,44,117,61,91,93,59,43,43,116,60,114,59,41,123,10,118,97,114,32,105,61,110,91,116,93,59,105,38,38,40,117,91,101,43,43,93,61,105,41,125,114,101,116,117,114,110,32,117,125,44,65,110,46,99,111,110,99,97,116,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,102,111,114,40,118,97,114,32,116,61,75,117,40,110,45,49,41,44,114,61,97,114,103,117,109,101,110,116,115,91,48,93,59,110,45,45,59,41,116,91,110,45,49,93,61,97,114,103,117,109,101,110,116,115,91,110,93,59,114,101,116,117,114,110,32,97,40,102,102,40,114,41,63,85,114,40,114,41,58,91,114,93,44,119,116,40,116,44,49,41,41,125,44,65,110,46,99,111,110,100,61,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,116,63,48,58,116,46,108,101,110,103,116,104,44,101,61,121,101,40,41,59,114,101,116,117,114,110,32,116,61,114,63,99,40,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,91,49,93,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,91,101,40,110,91,48,93,41,44,110,91,49,93,93,125,41,58,91,93,44,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,117,61,45,49,59,43,43,117,60,114,59,41,123,118,97,114,32,105,61,116,91,117,93,59,105,102,40,110,40,105,91,48,93,44,116,104,105,115,44,101,41,41,114,101,116,117,114,110,32,110,40,105,91,49,93,44,116,104,105,115,44,101,41,125,125,41,125,44,65,110,46,99,111,110,102,111,114,109,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,99,111,110,115,116,97,110,116,61,84,117,44,10,65,110,46,99,111,117,110,116,66,121,61,36,111,44,65,110,46,99,114,101,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,101,111,40,110,41,59,114,101,116,117,114,110,32,110,117,108,108,61,61,116,63,114,58,97,116,40,114,44,116,41,125,44,65,110,46,99,117,114,114,121,61,105,117,44,65,110,46,99,117,114,114,121,82,105,103,104,116,61,111,117,44,65,110,46,100,101,98,111,117,110,99,101,61,102,117,44,65,110,46,100,101,102,97,117,108,116,115,61,119,102,44,65,110,46,100,101,102,97,117,108,116,115,68,101,101,112,61,109,102,44,65,110,46,100,101,102,101,114,61,89,111,44,65,110,46,100,101,108,97,121,61,81,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,61,119,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,66,121,61,109,111,44,65,110,46,100,105,102,102,101,114,101,110,99,101,87,105,116,104,61,65,111,44,65,110,46,100,114,111,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,100,114,111,112,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,44,116,114,117,101,41,58,91,93,59,10,125,44,65,110,46,100,114,111,112,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,116,114,117,101,41,58,91,93,125,44,65,110,46,102,105,108,108,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,118,97,114,32,117,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,117,41,114,101,116,117,114,110,91,93,59,102,111,114,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,114,61,48,44,101,61,117,41,44,117,61,110,46,108,101,110,103,116,104,44,114,61,69,117,40,114,41,44,48,62,114,38,38,40,114,61,45,114,62,117,63,48,58,117,43,114,41,44,101,61,101,61,61,61,84,124,124,101,62,117,63,117,58,69,117,40,101,41,44,48,62,101,38,38,40,101,43,61,117,41,44,101,61,114,62,101,63,48,58,107,117,40,101,41,59,114,60,101,59,41,110,91,114,43,43,93,61,116,59,114,101,116,117,114,110,32,110,125,44,65,110,46,102,105,108,116,101,114,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,108,97,116,77,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,49,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,119,116,40,114,117,40,110,44,116,41,44,36,41,125,44,65,110,46,102,108,97,116,77,97,112,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,114,61,61,61,84,63,49,58,69,117,40,114,41,44,10,119,116,40,114,117,40,110,44,116,41,44,114,41,125,44,65,110,46,102,108,97,116,116,101,110,61,90,101,44,65,110,46,102,108,97,116,116,101,110,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,119,116,40,110,44,36,41,58,91,93,125,44,65,110,46,102,108,97,116,116,101,110,68,101,112,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,116,61,61,61,84,63,49,58,69,117,40,116,41,44,119,116,40,110,44,116,41,41,58,91,93,125,44,65,110,46,102,108,105,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,101,40,110,44,53,49,50,41,125,44,65,110,46,102,108,111,119,61,80,102,44,65,110,46,102,108,111,119,82,105,103,104,116,61,90,102,44,65,110,46,102,114,111,109,80,97,105,114,115,61,102,117,110,99,116,105,111,110,40,110,41,123,102,111,114,40,118,97,114,32,116,61,45,49,44,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,44,101,61,123,125,59,43,43,116,60,114,59,41,123,118,97,114,32,117,61,110,91,116,93,59,101,91,117,91,48,93,93,61,117,91,49,93,125,114,101,116,117,114,110,32,101,125,44,65,110,46,102,117,110,99,116,105,111,110,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,87,117,40,110,41,41,125,44,65,110,46,102,117,110,99,116,105,111,110,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,69,116,40,110,44,66,117,40,110,41,41,125,44,65,110,46,103,114,111,117,112,66,121,61,80,111,44,65,110,46,105,110,105,116,105,97,108,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,63,104,114,40,110,44,48,44,45,49,41,58,91,93,125,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,61,69,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,66,121,61,107,111,44,65,110,46,105,110,116,101,114,115,101,99,116,105,111,110,87,105,116,104,61,83,111,44,65,110,46,105,110,118,101,114,116,61,65,102,44,65,110,46,105,110,118,101,114,116,66,121,61,69,102,44,65,110,46,105,110,118,111,107,101,77,97,112,61,90,111,44,65,110,46,105,116,101,114,97,116,101,101,61,70,117,44,65,110,46,107,101,121,66,121,61,113,111,44,65,110,46,107,101,121,115,61,87,117,44,65,110,46,107,101,121,115,73,110,61,66,117,44,65,110,46,109,97,112,61,114,117,44,65,110,46,109,97,112,75,101,121,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,116,40,110,44,101,44,117,41,44,110,41,125,41,44,114,125,44,65,110,46,109,97,112,86,97,108,117,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,123,125,59,114,101,116,117,114,110,32,116,61,121,101,40,116,44,51,41,44,109,116,40,110,44,102,117,110,99,116,105,111,110,40,110,44,101,44,117,41,123,115,116,40,114,44,101,44,116,40,110,44,101,44,117,41,41,125,41,44,114,125,44,65,110,46,109,97,116,99,104,101,115,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,72,116,40,95,116,40,110,44,49,41,41,125,44,65,110,46,109,97,116,99,104,101,115,80,114,111,112,101,114,116,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,74,116,40,110,44,95,116,40,116,44,49,41,41,125,44,65,110,46,109,101,109,111,105,122,101,61,99,117,44,10,65,110,46,109,101,114,103,101,61,83,102,44,65,110,46,109,101,114,103,101,87,105,116,104,61,79,102,44,65,110,46,109,101,116,104,111,100,61,113,102,44,65,110,46,109,101,116,104,111,100,79,102,61,86,102,44,65,110,46,109,105,120,105,110,61,78,117,44,65,110,46,110,101,103,97,116,101,61,97,117,44,65,110,46,110,116,104,65,114,103,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,69,117,40,110,41,44,102,114,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,81,116,40,116,44,110,41,125,41,125,44,65,110,46,111,109,105,116,61,73,102,44,65,110,46,111,109,105,116,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,76,117,40,110,44,97,117,40,121,101,40,116,41,41,41,125,44,65,110,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,117,117,40,50,44,110,41,125,44,65,110,46,111,114,100,101,114,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,40,102,102,40,116,41,124,124,40,116,61,110,117,108,108,61,61,116,63,91,93,58,91,116,93,41,44,114,61,101,63,84,58,114,44,102,102,40,114,41,124,124,40,114,61,110,117,108,108,61,61,114,63,91,93,58,91,114,93,41,44,88,116,40,110,44,116,44,114,41,41,125,44,65,110,46,111,118,101,114,61,75,102,44,65,110,46,111,118,101,114,65,114,103,115,61,88,111,44,65,110,46,111,118,101,114,69,118,101,114,121,61,71,102,44,65,110,46,111,118,101,114,83,111,109,101,61,72,102,44,65,110,46,112,97,114,116,105,97,108,61,110,102,44,65,110,46,112,97,114,116,105,97,108,82,105,103,104,116,61,116,102,44,65,110,46,112,97,114,116,105,116,105,111,110,61,86,111,44,65,110,46,112,105,99,107,61,82,102,44,65,110,46,112,105,99,107,66,121,61,76,117,44,65,110,46,112,114,111,112,101,114,116,121,61,90,117,44,10,65,110,46,112,114,111,112,101,114,116,121,79,102,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,84,58,107,116,40,110,44,116,41,125,125,44,65,110,46,112,117,108,108,61,79,111,44,65,110,46,112,117,108,108,65,108,108,61,75,101,44,65,110,46,112,117,108,108,65,108,108,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,121,101,40,114,44,50,41,41,58,110,125,44,65,110,46,112,117,108,108,65,108,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,38,38,116,38,38,116,46,108,101,110,103,116,104,63,101,114,40,110,44,116,44,84,44,114,41,58,110,125,44,65,110,46,112,117,108,108,65,116,61,73,111,44,65,110,46,114,97,110,103,101,61,74,102,44,65,110,46,114,97,110,103,101,82,105,103,104,116,61,89,102,44,65,110,46,114,101,97,114,103,61,114,102,44,65,110,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,105,58,106,116,41,40,110,44,97,117,40,121,101,40,116,44,51,41,41,41,125,44,65,110,46,114,101,109,111,118,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,91,93,59,105,102,40,33,110,124,124,33,110,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,114,59,118,97,114,32,101,61,45,49,44,117,61,91,93,44,105,61,110,46,108,101,110,103,116,104,59,102,111,114,40,116,61,121,101,40,116,44,51,41,59,43,43,101,60,105,59,41,123,118,97,114,32,111,61,110,91,101,93,59,116,40,111,44,101,44,110,41,38,38,40,114,46,112,117,115,104,40,111,41,44,10,117,46,112,117,115,104,40,101,41,41,125,114,101,116,117,114,110,32,117,114,40,110,44,117,41,44,114,125,44,65,110,46,114,101,115,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,61,116,61,61,61,84,63,116,58,69,117,40,116,41,44,102,114,40,110,44,116,41,125,44,65,110,46,114,101,118,101,114,115,101,61,71,101,44,65,110,46,115,97,109,112,108,101,83,105,122,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,40,102,102,40,110,41,63,101,116,58,97,114,41,40,110,44,116,41,125,44,65,110,46,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,41,125,44,65,110,46,115,101,116,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,114,44,101,41,125,44,65,110,46,115,104,117,102,102,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,117,116,58,115,114,41,40,110,41,125,44,65,110,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,63,40,116,61,48,44,10,114,61,101,41,58,40,116,61,110,117,108,108,61,61,116,63,48,58,69,117,40,116,41,44,114,61,114,61,61,61,84,63,101,58,69,117,40,114,41,41,44,104,114,40,110,44,116,44,114,41,41,58,91,93,125,44,65,110,46,115,111,114,116,66,121,61,75,111,44,65,110,46,115,111,114,116,101,100,85,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,41,58,91,93,125,44,65,110,46,115,111,114,116,101,100,85,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,103,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,115,112,108,105,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,38,38,116,121,112,101,111,102,32,114,33,61,34,110,117,109,98,101,114,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,114,61,61,61,84,63,52,50,57,52,57,54,55,50,57,53,58,114,62,62,62,48,44,114,63,40,110,61,73,117,40,110,41,41,38,38,40,116,121,112,101,111,102,32,116,61,61,34,115,116,114,105,110,103,34,124,124,110,117,108,108,33,61,116,38,38,33,104,102,40,116,41,41,38,38,40,116,61,121,114,40,116,41,44,33,116,38,38,82,110,46,116,101,115,116,40,110,41,41,63,79,114,40,77,40,110,41,44,48,44,114,41,58,110,46,115,112,108,105,116,40,116,44,114,41,58,91,93,125,44,65,110,46,115,112,114,101,97,100,61,102,117,110,99,116,105,111,110,40,116,44,114,41,123,105,102,40,116,121,112,101,111,102,32,116,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,61,110,117,108,108,61,61,114,63,48,58,85,105,40,69,117,40,114,41,44,48,41,44,10,102,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,117,61,101,91,114,93,59,114,101,116,117,114,110,32,101,61,79,114,40,101,44,48,44,114,41,44,117,38,38,97,40,101,44,117,41,44,110,40,116,44,116,104,105,115,44,101,41,125,41,125,44,65,110,46,116,97,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,63,104,114,40,110,44,49,44,116,41,58,91,93,125,44,65,110,46,116,97,107,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,104,114,40,110,44,48,44,48,62,116,63,48,58,116,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,116,61,114,124,124,116,61,61,61,84,63,49,58,69,117,40,116,41,44,116,61,101,45,116,44,104,114,40,110,44,48,62,116,63,48,58,116,44,101,41,41,58,91,93,125,44,65,110,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,44,102,97,108,115,101,44,116,114,117,101,41,58,91,93,125,44,65,110,46,116,97,107,101,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,106,114,40,110,44,121,101,40,116,44,51,41,41,58,91,93,125,44,65,110,46,116,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,40,110,41,44,10,110,125,44,65,110,46,116,104,114,111,116,116,108,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,116,114,117,101,44,117,61,116,114,117,101,59,105,102,40,116,121,112,101,111,102,32,110,33,61,34,102,117,110,99,116,105,111,110,34,41,116,104,114,111,119,32,110,101,119,32,116,105,40,34,69,120,112,101,99,116,101,100,32,97,32,102,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,100,117,40,114,41,38,38,40,101,61,34,108,101,97,100,105,110,103,34,105,110,32,114,63,33,33,114,46,108,101,97,100,105,110,103,58,101,44,117,61,34,116,114,97,105,108,105,110,103,34,105,110,32,114,63,33,33,114,46,116,114,97,105,108,105,110,103,58,117,41,44,102,117,40,110,44,116,44,123,108,101,97,100,105,110,103,58,101,44,109,97,120,87,97,105,116,58,116,44,116,114,97,105,108,105,110,103,58,117,125,41,125,44,65,110,46,116,104,114,117,61,81,101,44,65,110,46,116,111,65,114,114,97,121,61,109,117,44,65,110,46,116,111,80,97,105,114,115,61,122,102,44,65,110,46,116,111,80,97,105,114,115,73,110,61,87,102,44,65,110,46,116,111,80,97,116,104,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,102,40,110,41,63,99,40,110,44,77,101,41,58,119,117,40,110,41,63,91,110,93,58,85,114,40,106,111,40,73,117,40,110,41,41,41,125,44,65,110,46,116,111,80,108,97,105,110,79,98,106,101,99,116,61,79,117,44,65,110,46,116,114,97,110,115,102,111,114,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,101,41,123,118,97,114,32,117,61,102,102,40,110,41,44,105,61,117,124,124,97,102,40,110,41,124,124,95,102,40,110,41,59,105,102,40,116,61,121,101,40,116,44,52,41,44,110,117,108,108,61,61,101,41,123,118,97,114,32,111,61,110,38,38,110,46,99,111,110,115,116,114,117,99,116,111,114,59,101,61,105,63,117,63,110,101,119,32,111,58,91,93,58,100,117,40,110,41,38,38,95,117,40,111,41,63,101,111,40,100,105,40,110,41,41,58,123,125,59,10,125,114,101,116,117,114,110,40,105,63,114,58,109,116,41,40,110,44,102,117,110,99,116,105,111,110,40,110,44,114,44,117,41,123,114,101,116,117,114,110,32,116,40,101,44,110,44,114,44,117,41,125,41,44,101,125,44,65,110,46,117,110,97,114,121,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,117,40,110,44,49,41,125,44,65,110,46,117,110,105,111,110,61,82,111,44,65,110,46,117,110,105,111,110,66,121,61,122,111,44,65,110,46,117,110,105,111,110,87,105,116,104,61,87,111,44,65,110,46,117,110,105,113,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,41,58,91,93,125,44,65,110,46,117,110,105,113,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,121,101,40,116,44,50,41,41,58,91,93,125,44,65,110,46,117,110,105,113,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,110,38,38,110,46,108,101,110,103,116,104,63,98,114,40,110,44,84,44,116,41,58,91,93,125,44,65,110,46,117,110,115,101,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,120,114,40,110,44,116,41,125,44,65,110,46,117,110,122,105,112,61,72,101,44,65,110,46,117,110,122,105,112,87,105,116,104,61,74,101,44,65,110,46,117,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,118,111,105,100,32,48,41,125,44,65,110,46,117,112,100,97,116,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,10,114,101,116,117,114,110,32,101,61,116,121,112,101,111,102,32,101,61,61,34,102,117,110,99,116,105,111,110,34,63,101,58,84,44,110,117,108,108,33,61,110,38,38,40,110,61,108,114,40,110,44,116,44,107,114,40,114,41,40,107,116,40,110,44,116,41,41,44,101,41,41,44,110,125,44,65,110,46,118,97,108,117,101,115,61,85,117,44,65,110,46,118,97,108,117,101,115,73,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,91,93,58,83,40,110,44,66,117,40,110,41,41,125,44,65,110,46,119,105,116,104,111,117,116,61,66,111,44,65,110,46,119,111,114,100,115,61,77,117,44,65,110,46,119,114,97,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,102,40,107,114,40,116,41,44,110,41,125,44,65,110,46,120,111,114,61,76,111,44,65,110,46,120,111,114,66,121,61,85,111,44,65,110,46,120,111,114,87,105,116,104,61,67,111,44,65,110,46,122,105,112,61,68,111,44,65,110,46,122,105,112,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,111,116,41,125,44,65,110,46,122,105,112,79,98,106,101,99,116,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,65,114,40,110,124,124,91,93,44,116,124,124,91,93,44,108,114,41,125,44,65,110,46,122,105,112,87,105,116,104,61,77,111,44,65,110,46,101,110,116,114,105,101,115,61,122,102,44,65,110,46,101,110,116,114,105,101,115,73,110,61,87,102,44,65,110,46,101,120,116,101,110,100,61,121,102,44,65,110,46,101,120,116,101,110,100,87,105,116,104,61,98,102,44,78,117,40,65,110,44,65,110,41,44,65,110,46,97,100,100,61,81,102,44,65,110,46,97,116,116,101,109,112,116,61,70,102,44,65,110,46,99,97,109,101,108,67,97,115,101,61,66,102,44,65,110,46,99,97,112,105,116,97,108,105,122,101,61,67,117,44,10,65,110,46,99,101,105,108,61,88,102,44,65,110,46,99,108,97,109,112,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,61,61,84,38,38,40,114,61,116,44,116,61,84,41,44,114,33,61,61,84,38,38,40,114,61,83,117,40,114,41,44,114,61,114,61,61,61,114,63,114,58,48,41,44,116,33,61,61,84,38,38,40,116,61,83,117,40,116,41,44,116,61,116,61,61,61,116,63,116,58,48,41,44,112,116,40,83,117,40,110,41,44,116,44,114,41,125,44,65,110,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,52,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,95,116,40,110,44,53,41,125,44,65,110,46,99,108,111,110,101,68,101,101,112,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,53,44,116,41,125,44,65,110,46,99,108,111,110,101,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,61,116,121,112,101,111,102,32,116,61,61,34,102,117,110,99,116,105,111,110,34,63,116,58,84,44,95,116,40,110,44,52,44,116,41,125,44,65,110,46,99,111,110,102,111,114,109,115,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,116,124,124,103,116,40,110,44,116,44,87,117,40,116,41,41,125,44,65,110,46,100,101,98,117,114,114,61,68,117,44,65,110,46,100,101,102,97,117,108,116,84,111,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,124,124,110,33,61,61,110,63,116,58,110,125,44,65,110,46,100,105,118,105,100,101,61,110,99,44,65,110,46,101,110,100,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,110,61,73,117,40,110,41,44,116,61,121,114,40,116,41,59,118,97,114,32,101,61,110,46,108,101,110,103,116,104,44,101,61,114,61,114,61,61,61,84,63,101,58,112,116,40,69,117,40,114,41,44,48,44,101,41,59,114,101,116,117,114,110,32,114,45,61,116,46,108,101,110,103,116,104,44,48,60,61,114,38,38,110,46,115,108,105,99,101,40,114,44,101,41,61,61,116,125,44,65,110,46,101,113,61,108,117,44,65,110,46,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,72,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,75,44,110,116,41,58,110,125,44,65,110,46,101,115,99,97,112,101,82,101,103,69,120,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,101,110,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,114,110,44,34,92,92,36,38,34,41,58,110,125,44,65,110,46,101,118,101,114,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,117,58,98,116,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,105,110,100,61,70,111,44,65,110,46,102,105,110,100,73,110,100,101,120,61,78,101,44,65,110,46,102,105,110,100,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,109,116,41,125,44,65,110,46,102,105,110,100,76,97,115,116,61,78,111,44,65,110,46,102,105,110,100,76,97,115,116,73,110,100,101,120,61,80,101,44,65,110,46,102,105,110,100,76,97,115,116,75,101,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,112,40,110,44,121,101,40,116,44,51,41,44,65,116,41,59,10,125,44,65,110,46,102,108,111,111,114,61,116,99,44,65,110,46,102,111,114,69,97,99,104,61,110,117,44,65,110,46,102,111,114,69,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,111,114,73,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,111,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,73,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,110,58,102,111,40,110,44,121,101,40,116,44,51,41,44,66,117,41,125,44,65,110,46,102,111,114,79,119,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,109,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,102,111,114,79,119,110,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,65,116,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,103,101,116,61,82,117,44,65,110,46,103,116,61,101,102,44,65,110,46,103,116,101,61,117,102,44,65,110,46,104,97,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,33,61,110,38,38,119,101,40,110,44,116,44,82,116,41,125,44,65,110,46,104,97,115,73,110,61,122,117,44,65,110,46,104,101,97,100,61,113,101,44,65,110,46,105,100,101,110,116,105,116,121,61,36,117,44,65,110,46,105,110,99,108,117,100,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,44,101,41,123,114,101,116,117,114,110,32,110,61,115,117,40,110,41,63,110,58,85,117,40,110,41,44,114,61,114,38,38,33,101,63,69,117,40,114,41,58,48,44,101,61,110,46,108,101,110,103,116,104,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,106,117,40,110,41,63,114,60,61,101,38,38,45,49,60,110,46,105,110,100,101,120,79,102,40,116,44,114,41,58,33,33,101,38,38,45,49,60,118,40,110,44,116,44,114,41,59,10,125,44,65,110,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,63,40,114,61,110,117,108,108,61,61,114,63,48,58,69,117,40,114,41,44,48,62,114,38,38,40,114,61,85,105,40,101,43,114,44,48,41,41,44,118,40,110,44,116,44,114,41,41,58,45,49,125,44,65,110,46,105,110,82,97,110,103,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,65,117,40,116,41,44,114,61,61,61,84,63,40,114,61,116,44,116,61,48,41,58,114,61,65,117,40,114,41,44,110,61,83,117,40,110,41,44,110,62,61,67,105,40,116,44,114,41,38,38,110,60,85,105,40,116,44,114,41,125,44,65,110,46,105,110,118,111,107,101,61,107,102,44,65,110,46,105,115,65,114,103,117,109,101,110,116,115,61,111,102,44,65,110,46,105,115,65,114,114,97,121,61,102,102,44,65,110,46,105,115,65,114,114,97,121,66,117,102,102,101,114,61,99,102,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,61,115,117,44,65,110,46,105,115,65,114,114,97,121,76,105,107,101,79,98,106,101,99,116,61,104,117,44,65,110,46,105,115,66,111,111,108,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,114,117,101,61,61,61,110,124,124,102,97,108,115,101,61,61,61,110,124,124,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,66,111,111,108,101,97,110,93,34,61,61,79,116,40,110,41,125,44,65,110,46,105,115,66,117,102,102,101,114,61,97,102,44,65,110,46,105,115,68,97,116,101,61,108,102,44,65,110,46,105,115,69,108,101,109,101,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,49,61,61,61,110,46,110,111,100,101,84,121,112,101,38,38,33,120,117,40,110,41,125,44,65,110,46,105,115,69,109,112,116,121,61,102,117,110,99,116,105,111,110,40,110,41,123,10,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,116,114,117,101,59,105,102,40,115,117,40,110,41,38,38,40,102,102,40,110,41,124,124,116,121,112,101,111,102,32,110,61,61,34,115,116,114,105,110,103,34,124,124,116,121,112,101,111,102,32,110,46,115,112,108,105,99,101,61,61,34,102,117,110,99,116,105,111,110,34,124,124,97,102,40,110,41,124,124,95,102,40,110,41,124,124,111,102,40,110,41,41,41,114,101,116,117,114,110,33,110,46,108,101,110,103,116,104,59,118,97,114,32,116,61,118,111,40,110,41,59,105,102,40,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,41,114,101,116,117,114,110,33,110,46,115,105,122,101,59,105,102,40,122,101,40,110,41,41,114,101,116,117,114,110,33,86,116,40,110,41,46,108,101,110,103,116,104,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,105,102,40,111,105,46,99,97,108,108,40,110,44,114,41,41,114,101,116,117,114,110,32,102,97,108,115,101,59,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,105,115,69,113,117,97,108,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,77,116,40,110,44,116,41,125,44,65,110,46,105,115,69,113,117,97,108,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,40,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,41,63,114,40,110,44,116,41,58,84,59,114,101,116,117,114,110,32,101,61,61,61,84,63,77,116,40,110,44,116,44,84,44,114,41,58,33,33,101,125,44,65,110,46,105,115,69,114,114,111,114,61,112,117,44,65,110,46,105,115,70,105,110,105,116,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,110,117,109,98,101,114,34,38,38,87,105,40,110,41,125,44,65,110,46,105,115,70,117,110,99,116,105,111,110,61,95,117,44,10,65,110,46,105,115,73,110,116,101,103,101,114,61,118,117,44,65,110,46,105,115,76,101,110,103,116,104,61,103,117,44,65,110,46,105,115,77,97,112,61,115,102,44,65,110,46,105,115,77,97,116,99,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,61,61,61,116,124,124,36,116,40,110,44,116,44,120,101,40,116,41,41,125,44,65,110,46,105,115,77,97,116,99,104,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,114,61,116,121,112,101,111,102,32,114,61,61,34,102,117,110,99,116,105,111,110,34,63,114,58,84,44,36,116,40,110,44,116,44,120,101,40,116,41,44,114,41,125,44,65,110,46,105,115,78,97,78,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,98,117,40,110,41,38,38,110,33,61,43,110,125,44,65,110,46,105,115,78,97,116,105,118,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,103,111,40,110,41,41,116,104,114,111,119,32,110,101,119,32,72,117,40,34,85,110,115,117,112,112,111,114,116,101,100,32,99,111,114,101,45,106,115,32,117,115,101,46,32,84,114,121,32,104,116,116,112,115,58,47,47,110,112,109,115,46,105,111,47,115,101,97,114,99,104,63,113,61,112,111,110,121,102,105,108,108,46,34,41,59,114,101,116,117,114,110,32,70,116,40,110,41,125,44,65,110,46,105,115,78,105,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,125,44,65,110,46,105,115,78,117,108,108,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,110,125,44,65,110,46,105,115,78,117,109,98,101,114,61,98,117,44,65,110,46,105,115,79,98,106,101,99,116,61,100,117,44,65,110,46,105,115,79,98,106,101,99,116,76,105,107,101,61,121,117,44,65,110,46,105,115,80,108,97,105,110,79,98,106,101,99,116,61,120,117,44,65,110,46,105,115,82,101,103,69,120,112,61,104,102,44,10,65,110,46,105,115,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,118,117,40,110,41,38,38,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,61,110,38,38,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,62,61,110,125,44,65,110,46,105,115,83,101,116,61,112,102,44,65,110,46,105,115,83,116,114,105,110,103,61,106,117,44,65,110,46,105,115,83,121,109,98,111,108,61,119,117,44,65,110,46,105,115,84,121,112,101,100,65,114,114,97,121,61,95,102,44,65,110,46,105,115,85,110,100,101,102,105,110,101,100,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,61,61,61,84,125,44,65,110,46,105,115,87,101,97,107,77,97,112,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,77,97,112,93,34,61,61,118,111,40,110,41,125,44,65,110,46,105,115,87,101,97,107,83,101,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,117,40,110,41,38,38,34,91,111,98,106,101,99,116,32,87,101,97,107,83,101,116,93,34,61,61,79,116,40,110,41,125,44,65,110,46,106,111,105,110,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,110,63,34,34,58,66,105,46,99,97,108,108,40,110,44,116,41,125,44,65,110,46,107,101,98,97,98,67,97,115,101,61,76,102,44,65,110,46,108,97,115,116,61,86,101,44,65,110,46,108,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,33,101,41,114,101,116,117,114,110,45,49,59,118,97,114,32,117,61,101,59,105,102,40,114,33,61,61,84,38,38,40,117,61,69,117,40,114,41,44,117,61,48,62,117,63,85,105,40,101,43,117,44,48,41,58,67,105,40,117,44,101,45,49,41,41,44,10,116,61,61,61,116,41,123,102,111,114,40,114,61,117,43,49,59,114,45,45,38,38,110,91,114,93,33,61,61,116,59,41,59,110,61,114,125,101,108,115,101,32,110,61,95,40,110,44,100,44,117,44,116,114,117,101,41,59,114,101,116,117,114,110,32,110,125,44,65,110,46,108,111,119,101,114,67,97,115,101,61,85,102,44,65,110,46,108,111,119,101,114,70,105,114,115,116,61,67,102,44,65,110,46,108,116,61,118,102,44,65,110,46,108,116,101,61,103,102,44,65,110,46,109,97,120,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,73,116,41,58,84,125,44,65,110,46,109,97,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,73,116,41,58,84,125,44,65,110,46,109,101,97,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,121,40,110,44,36,117,41,125,44,65,110,46,109,101,97,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,121,40,110,44,121,101,40,116,44,50,41,41,125,44,65,110,46,109,105,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,36,117,44,75,116,41,58,84,125,44,65,110,46,109,105,110,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,120,116,40,110,44,121,101,40,116,44,50,41,44,75,116,41,58,84,125,44,65,110,46,115,116,117,98,65,114,114,97,121,61,113,117,44,65,110,46,115,116,117,98,70,97,108,115,101,61,86,117,44,65,110,46,115,116,117,98,79,98,106,101,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,123,125,125,44,65,110,46,115,116,117,98,83,116,114,105,110,103,61,102,117,110,99,116,105,111,110,40,41,123,10,114,101,116,117,114,110,34,34,125,44,65,110,46,115,116,117,98,84,114,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,114,117,101,125,44,65,110,46,109,117,108,116,105,112,108,121,61,114,99,44,65,110,46,110,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,81,116,40,110,44,69,117,40,116,41,41,58,84,125,44,65,110,46,110,111,67,111,110,102,108,105,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,36,110,46,95,61,61,61,116,104,105,115,38,38,40,36,110,46,95,61,115,105,41,44,116,104,105,115,125,44,65,110,46,110,111,111,112,61,80,117,44,65,110,46,110,111,119,61,71,111,44,65,110,46,112,97,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,33,116,124,124,101,62,61,116,63,110,58,40,116,61,40,116,45,101,41,47,50,44,110,101,40,73,105,40,116,41,44,114,41,43,110,43,110,101,40,79,105,40,116,41,44,114,41,41,125,44,65,110,46,112,97,100,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,43,110,101,40,116,45,101,44,114,41,58,110,125,44,65,110,46,112,97,100,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,110,61,73,117,40,110,41,59,118,97,114,32,101,61,40,116,61,69,117,40,116,41,41,63,68,40,110,41,58,48,59,114,101,116,117,114,110,32,116,38,38,101,60,116,63,110,101,40,116,45,101,44,114,41,43,110,58,110,125,44,65,110,46,112,97,114,115,101,73,110,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,10,114,101,116,117,114,110,32,114,124,124,110,117,108,108,61,61,116,63,116,61,48,58,116,38,38,40,116,61,43,116,41,44,77,105,40,73,117,40,110,41,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,44,116,124,124,48,41,125,44,65,110,46,114,97,110,100,111,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,105,102,40,114,38,38,116,121,112,101,111,102,32,114,33,61,34,98,111,111,108,101,97,110,34,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,114,61,84,41,44,114,61,61,61,84,38,38,40,116,121,112,101,111,102,32,116,61,61,34,98,111,111,108,101,97,110,34,63,40,114,61,116,44,116,61,84,41,58,116,121,112,101,111,102,32,110,61,61,34,98,111,111,108,101,97,110,34,38,38,40,114,61,110,44,110,61,84,41,41,44,110,61,61,61,84,38,38,116,61,61,61,84,63,40,110,61,48,44,116,61,49,41,58,40,110,61,65,117,40,110,41,44,116,61,61,61,84,63,40,116,61,110,44,110,61,48,41,58,116,61,65,117,40,116,41,41,44,110,62,116,41,123,118,97,114,32,101,61,110,59,110,61,116,44,116,61,101,125,114,101,116,117,114,110,32,114,124,124,110,37,49,124,124,116,37,49,63,40,114,61,84,105,40,41,44,67,105,40,110,43,114,42,40,116,45,110,43,67,110,40,34,49,101,45,34,43,40,40,114,43,34,34,41,46,108,101,110,103,116,104,45,49,41,41,41,44,116,41,41,58,105,114,40,110,44,116,41,125,44,65,110,46,114,101,100,117,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,108,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,117,111,41,125,44,65,110,46,114,101,100,117,99,101,82,105,103,104,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,115,58,106,44,117,61,51,62,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,10,114,101,116,117,114,110,32,101,40,110,44,121,101,40,116,44,52,41,44,114,44,117,44,105,111,41,125,44,65,110,46,114,101,112,101,97,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,116,61,40,114,63,79,101,40,110,44,116,44,114,41,58,116,61,61,61,84,41,63,49,58,69,117,40,116,41,44,111,114,40,73,117,40,110,41,44,116,41,125,44,65,110,46,114,101,112,108,97,99,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,44,116,61,73,117,40,110,91,48,93,41,59,114,101,116,117,114,110,32,51,62,110,46,108,101,110,103,116,104,63,116,58,116,46,114,101,112,108,97,99,101,40,110,91,49,93,44,110,91,50,93,41,125,44,65,110,46,114,101,115,117,108,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,116,61,83,114,40,116,44,110,41,59,118,97,114,32,101,61,45,49,44,117,61,116,46,108,101,110,103,116,104,59,102,111,114,40,117,124,124,40,117,61,49,44,110,61,84,41,59,43,43,101,60,117,59,41,123,118,97,114,32,105,61,110,117,108,108,61,61,110,63,84,58,110,91,77,101,40,116,91,101,93,41,93,59,105,61,61,61,84,38,38,40,101,61,117,44,105,61,114,41,44,110,61,95,117,40,105,41,63,105,46,99,97,108,108,40,110,41,58,105,125,114,101,116,117,114,110,32,110,125,44,65,110,46,114,111,117,110,100,61,101,99,44,65,110,46,114,117,110,73,110,67,111,110,116,101,120,116,61,120,44,65,110,46,115,97,109,112,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,102,102,40,110,41,63,81,110,58,99,114,41,40,110,41,125,44,65,110,46,115,105,122,101,61,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,117,108,108,61,61,110,41,114,101,116,117,114,110,32,48,59,105,102,40,115,117,40,110,41,41,114,101,116,117,114,110,32,106,117,40,110,41,63,68,40,110,41,58,110,46,108,101,110,103,116,104,59,10,118,97,114,32,116,61,118,111,40,110,41,59,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,77,97,112,93,34,61,61,116,124,124,34,91,111,98,106,101,99,116,32,83,101,116,93,34,61,61,116,63,110,46,115,105,122,101,58,86,116,40,110,41,46,108,101,110,103,116,104,125,44,65,110,46,115,110,97,107,101,67,97,115,101,61,68,102,44,65,110,46,115,111,109,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,102,102,40,110,41,63,104,58,112,114,59,114,101,116,117,114,110,32,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,101,40,110,44,121,101,40,116,44,51,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,41,125,44,65,110,46,115,111,114,116,101,100,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,59,105,102,40,114,41,123,118,97,114,32,101,61,95,114,40,110,44,116,41,59,105,102,40,101,60,114,38,38,108,117,40,110,91,101,93,44,116,41,41,114,101,116,117,114,110,32,101,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,95,114,40,110,44,116,44,116,114,117,101,41,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,118,114,40,110,44,116,44,121,101,40,114,44,50,41,44,116,114,117,101,41,59,10,125,44,65,110,46,115,111,114,116,101,100,76,97,115,116,73,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,117,108,108,61,61,110,63,48,58,110,46,108,101,110,103,116,104,41,123,118,97,114,32,114,61,95,114,40,110,44,116,44,116,114,117,101,41,45,49,59,105,102,40,108,117,40,110,91,114,93,44,116,41,41,114,101,116,117,114,110,32,114,125,114,101,116,117,114,110,45,49,125,44,65,110,46,115,116,97,114,116,67,97,115,101,61,77,102,44,65,110,46,115,116,97,114,116,115,87,105,116,104,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,32,110,61,73,117,40,110,41,44,114,61,110,117,108,108,61,61,114,63,48,58,112,116,40,69,117,40,114,41,44,48,44,110,46,108,101,110,103,116,104,41,44,116,61,121,114,40,116,41,44,110,46,115,108,105,99,101,40,114,44,114,43,116,46,108,101,110,103,116,104,41,61,61,116,125,44,65,110,46,115,117,98,116,114,97,99,116,61,117,99,44,65,110,46,115,117,109,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,36,117,41,58,48,125,44,65,110,46,115,117,109,66,121,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,110,38,38,110,46,108,101,110,103,116,104,63,109,40,110,44,121,101,40,116,44,50,41,41,58,48,125,44,65,110,46,116,101,109,112,108,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,118,97,114,32,101,61,65,110,46,116,101,109,112,108,97,116,101,83,101,116,116,105,110,103,115,59,114,38,38,79,101,40,110,44,116,44,114,41,38,38,40,116,61,84,41,44,110,61,73,117,40,110,41,44,116,61,98,102,40,123,125,44,116,44,101,44,99,101,41,44,114,61,98,102,40,123,125,44,116,46,105,109,112,111,114,116,115,44,101,46,105,109,112,111,114,116,115,44,99,101,41,59,118,97,114,32,117,44,105,44,111,61,87,117,40,114,41,44,102,61,83,40,114,44,111,41,44,99,61,48,59,10,114,61,116,46,105,110,116,101,114,112,111,108,97,116,101,124,124,106,110,59,118,97,114,32,97,61,34,95,95,112,43,61,39,34,59,114,61,88,117,40,40,116,46,101,115,99,97,112,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,114,46,115,111,117,114,99,101,43,34,124,34,43,40,114,61,61,61,81,63,112,110,58,106,110,41,46,115,111,117,114,99,101,43,34,124,34,43,40,116,46,101,118,97,108,117,97,116,101,124,124,106,110,41,46,115,111,117,114,99,101,43,34,124,36,34,44,34,103,34,41,59,118,97,114,32,108,61,111,105,46,99,97,108,108,40,116,44,34,115,111,117,114,99,101,85,82,76,34,41,63,34,47,47,35,32,115,111,117,114,99,101,85,82,76,61,34,43,40,116,46,115,111,117,114,99,101,85,82,76,43,34,34,41,46,114,101,112,108,97,99,101,40,47,91,92,114,92,110,93,47,103,44,34,32,34,41,43,34,92,110,34,58,34,34,59,105,102,40,110,46,114,101,112,108,97,99,101,40,114,44,102,117,110,99,116,105,111,110,40,116,44,114,44,101,44,111,44,102,44,108,41,123,114,101,116,117,114,110,32,101,124,124,40,101,61,111,41,44,97,43,61,110,46,115,108,105,99,101,40,99,44,108,41,46,114,101,112,108,97,99,101,40,119,110,44,122,41,44,114,38,38,40,117,61,116,114,117,101,44,97,43,61,34,39,43,95,95,101,40,34,43,114,43,34,41,43,39,34,41,44,102,38,38,40,105,61,116,114,117,101,44,97,43,61,34,39,59,34,43,102,43,34,59,92,110,95,95,112,43,61,39,34,41,44,101,38,38,40,97,43,61,34,39,43,40,40,95,95,116,61,40,34,43,101,43,34,41,41,61,61,110,117,108,108,63,39,39,58,95,95,116,41,43,39,34,41,44,99,61,108,43,116,46,108,101,110,103,116,104,44,116,125,41,44,97,43,61,34,39,59,34,44,40,116,61,111,105,46,99,97,108,108,40,116,44,34,118,97,114,105,97,98,108,101,34,41,38,38,116,46,118,97,114,105,97,98,108,101,41,124,124,40,97,61,34,119,105,116,104,40,111,98,106,41,123,34,43,97,43,34,125,34,41,44,10,97,61,40,105,63,97,46,114,101,112,108,97,99,101,40,80,44,34,34,41,58,97,41,46,114,101,112,108,97,99,101,40,90,44,34,36,49,34,41,46,114,101,112,108,97,99,101,40,113,44,34,36,49,59,34,41,44,97,61,34,102,117,110,99,116,105,111,110,40,34,43,40,116,124,124,34,111,98,106,34,41,43,34,41,123,34,43,40,116,63,34,34,58,34,111,98,106,124,124,40,111,98,106,61,123,125,41,59,34,41,43,34,118,97,114,32,95,95,116,44,95,95,112,61,39,39,34,43,40,117,63,34,44,95,95,101,61,95,46,101,115,99,97,112,101,34,58,34,34,41,43,40,105,63,34,44,95,95,106,61,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,106,111,105,110,59,102,117,110,99,116,105,111,110,32,112,114,105,110,116,40,41,123,95,95,112,43,61,95,95,106,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,39,39,41,125,34,58,34,59,34,41,43,97,43,34,114,101,116,117,114,110,32,95,95,112,125,34,44,116,61,70,102,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,74,117,40,111,44,108,43,34,114,101,116,117,114,110,32,34,43,97,41,46,97,112,112,108,121,40,84,44,102,41,125,41,44,116,46,115,111,117,114,99,101,61,97,44,112,117,40,116,41,41,116,104,114,111,119,32,116,59,114,101,116,117,114,110,32,116,125,44,65,110,46,116,105,109,101,115,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,105,102,40,110,61,69,117,40,110,41,44,49,62,110,124,124,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,60,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,61,52,50,57,52,57,54,55,50,57,53,44,101,61,67,105,40,110,44,52,50,57,52,57,54,55,50,57,53,41,59,102,111,114,40,116,61,121,101,40,116,41,44,110,45,61,52,50,57,52,57,54,55,50,57,53,44,101,61,65,40,101,44,116,41,59,43,43,114,60,110,59,41,116,40,114,41,59,114,101,116,117,114,110,32,101,125,44,65,110,46,116,111,70,105,110,105,116,101,61,65,117,44,10,65,110,46,116,111,73,110,116,101,103,101,114,61,69,117,44,65,110,46,116,111,76,101,110,103,116,104,61,107,117,44,65,110,46,116,111,76,111,119,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,44,65,110,46,116,111,78,117,109,98,101,114,61,83,117,44,65,110,46,116,111,83,97,102,101,73,110,116,101,103,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,110,63,112,116,40,69,117,40,110,41,44,45,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,44,57,48,48,55,49,57,57,50,53,52,55,52,48,57,57,49,41,58,48,61,61,61,110,63,110,58,48,125,44,65,110,46,116,111,83,116,114,105,110,103,61,73,117,44,65,110,46,116,111,85,112,112,101,114,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,73,117,40,110,41,46,116,111,85,112,112,101,114,67,97,115,101,40,41,125,44,65,110,46,116,114,105,109,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,117,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,114,61,77,40,116,41,44,116,61,73,40,110,44,114,41,44,114,61,82,40,110,44,114,41,43,49,44,79,114,40,110,44,116,44,114,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,69,110,100,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,102,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,82,40,110,44,77,40,116,41,41,43,49,44,10,79,114,40,110,44,48,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,105,109,83,116,97,114,116,61,102,117,110,99,116,105,111,110,40,110,44,116,44,114,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,40,114,124,124,116,61,61,61,84,41,63,110,46,114,101,112,108,97,99,101,40,111,110,44,34,34,41,58,110,38,38,40,116,61,121,114,40,116,41,41,63,40,110,61,77,40,110,41,44,116,61,73,40,110,44,77,40,116,41,41,44,79,114,40,110,44,116,41,46,106,111,105,110,40,34,34,41,41,58,110,125,44,65,110,46,116,114,117,110,99,97,116,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,51,48,44,101,61,34,46,46,46,34,59,105,102,40,100,117,40,116,41,41,118,97,114,32,117,61,34,115,101,112,97,114,97,116,111,114,34,105,110,32,116,63,116,46,115,101,112,97,114,97,116,111,114,58,117,44,114,61,34,108,101,110,103,116,104,34,105,110,32,116,63,69,117,40,116,46,108,101,110,103,116,104,41,58,114,44,101,61,34,111,109,105,115,115,105,111,110,34,105,110,32,116,63,121,114,40,116,46,111,109,105,115,115,105,111,110,41,58,101,59,110,61,73,117,40,110,41,59,118,97,114,32,105,61,110,46,108,101,110,103,116,104,59,105,102,40,82,110,46,116,101,115,116,40,110,41,41,118,97,114,32,111,61,77,40,110,41,44,105,61,111,46,108,101,110,103,116,104,59,105,102,40,114,62,61,105,41,114,101,116,117,114,110,32,110,59,105,102,40,105,61,114,45,68,40,101,41,44,49,62,105,41,114,101,116,117,114,110,32,101,59,105,102,40,114,61,111,63,79,114,40,111,44,48,44,105,41,46,106,111,105,110,40,34,34,41,58,110,46,115,108,105,99,101,40,48,44,105,41,44,117,61,61,61,84,41,114,101,116,117,114,110,32,114,43,101,59,105,102,40,111,38,38,40,105,43,61,114,46,108,101,110,103,116,104,45,105,41,44,104,102,40,117,41,41,123,105,102,40,110,46,115,108,105,99,101,40,105,41,46,115,101,97,114,99,104,40,117,41,41,123,10,118,97,114,32,102,61,114,59,102,111,114,40,117,46,103,108,111,98,97,108,124,124,40,117,61,88,117,40,117,46,115,111,117,114,99,101,44,73,117,40,95,110,46,101,120,101,99,40,117,41,41,43,34,103,34,41,41,44,117,46,108,97,115,116,73,110,100,101,120,61,48,59,111,61,117,46,101,120,101,99,40,102,41,59,41,118,97,114,32,99,61,111,46,105,110,100,101,120,59,114,61,114,46,115,108,105,99,101,40,48,44,99,61,61,61,84,63,105,58,99,41,125,125,101,108,115,101,32,110,46,105,110,100,101,120,79,102,40,121,114,40,117,41,44,105,41,33,61,105,38,38,40,117,61,114,46,108,97,115,116,73,110,100,101,120,79,102,40,117,41,44,45,49,60,117,38,38,40,114,61,114,46,115,108,105,99,101,40,48,44,117,41,41,41,59,114,101,116,117,114,110,32,114,43,101,125,44,65,110,46,117,110,101,115,99,97,112,101,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,40,110,61,73,117,40,110,41,41,38,38,71,46,116,101,115,116,40,110,41,63,110,46,114,101,112,108,97,99,101,40,86,44,116,116,41,58,110,125,44,65,110,46,117,110,105,113,117,101,73,100,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,43,43,102,105,59,114,101,116,117,114,110,32,73,117,40,110,41,43,116,125,44,65,110,46,117,112,112,101,114,67,97,115,101,61,84,102,44,65,110,46,117,112,112,101,114,70,105,114,115,116,61,36,102,44,65,110,46,101,97,99,104,61,110,117,44,65,110,46,101,97,99,104,82,105,103,104,116,61,116,117,44,65,110,46,102,105,114,115,116,61,113,101,44,78,117,40,65,110,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,123,125,59,114,101,116,117,114,110,32,109,116,40,65,110,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,111,105,46,99,97,108,108,40,65,110,46,112,114,111,116,111,116,121,112,101,44,114,41,124,124,40,110,91,114,93,61,116,41,125,41,44,110,125,40,41,44,123,99,104,97,105,110,58,102,97,108,115,101,10,125,41,44,65,110,46,86,69,82,83,73,79,78,61,34,52,46,49,55,46,49,53,34,44,114,40,34,98,105,110,100,32,98,105,110,100,75,101,121,32,99,117,114,114,121,32,99,117,114,114,121,82,105,103,104,116,32,112,97,114,116,105,97,108,32,112,97,114,116,105,97,108,82,105,103,104,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,65,110,91,110,93,46,112,108,97,99,101,104,111,108,100,101,114,61,65,110,125,41,44,114,40,91,34,100,114,111,112,34,44,34,116,97,107,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,114,41,123,114,61,114,61,61,61,84,63,49,58,85,105,40,69,117,40,114,41,44,48,41,59,118,97,114,32,101,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,33,116,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,101,46,95,95,102,105,108,116,101,114,101,100,95,95,63,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,67,105,40,114,44,101,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,58,101,46,95,95,118,105,101,119,115,95,95,46,112,117,115,104,40,123,115,105,122,101,58,67,105,40,114,44,52,50,57,52,57,54,55,50,57,53,41,44,116,121,112,101,58,110,43,40,48,62,101,46,95,95,100,105,114,95,95,63,34,82,105,103,104,116,34,58,34,34,41,125,41,44,101,125,44,85,110,46,112,114,111,116,111,116,121,112,101,91,110,43,34,82,105,103,104,116,34,93,61,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,91,110,93,40,116,41,46,114,101,118,101,114,115,101,40,41,125,125,41,44,114,40,91,34,102,105,108,116,101,114,34,44,34,109,97,112,34,44,34,116,97,107,101,87,104,105,108,101,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,10,118,97,114,32,114,61,116,43,49,44,101,61,49,61,61,114,124,124,51,61,61,114,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,116,104,105,115,46,99,108,111,110,101,40,41,59,114,101,116,117,114,110,32,116,46,95,95,105,116,101,114,97,116,101,101,115,95,95,46,112,117,115,104,40,123,105,116,101,114,97,116,101,101,58,121,101,40,110,44,51,41,44,116,121,112,101,58,114,125,41,44,116,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,46,95,95,102,105,108,116,101,114,101,100,95,95,124,124,101,44,116,125,125,41,44,114,40,91,34,104,101,97,100,34,44,34,108,97,115,116,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,116,97,107,101,34,43,40,116,63,34,82,105,103,104,116,34,58,34,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,49,41,46,118,97,108,117,101,40,41,91,48,93,125,125,41,44,114,40,91,34,105,110,105,116,105,97,108,34,44,34,116,97,105,108,34,93,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,34,100,114,111,112,34,43,40,116,63,34,34,58,34,82,105,103,104,116,34,41,59,85,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,91,114,93,40,49,41,125,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,112,97,99,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,36,117,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,110,41,46,104,101,97,100,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,102,105,110,100,76,97,115,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,102,105,110,100,40,110,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,105,110,118,111,107,101,77,97,112,61,102,114,40,102,117,110,99,116,105,111,110,40,110,44,116,41,123,114,101,116,117,114,110,32,116,121,112,101,111,102,32,110,61,61,34,102,117,110,99,116,105,111,110,34,63,110,101,119,32,85,110,40,116,104,105,115,41,58,116,104,105,115,46,109,97,112,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,76,116,40,114,44,110,44,116,41,125,41,125,41,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,106,101,99,116,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,105,108,116,101,114,40,97,117,40,121,101,40,110,41,41,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,115,108,105,99,101,61,102,117,110,99,116,105,111,110,40,110,44,116,41,123,110,61,69,117,40,110,41,59,118,97,114,32,114,61,116,104,105,115,59,114,101,116,117,114,110,32,114,46,95,95,102,105,108,116,101,114,101,100,95,95,38,38,40,48,60,110,124,124,48,62,116,41,63,110,101,119,32,85,110,40,114,41,58,40,48,62,110,63,114,61,114,46,116,97,107,101,82,105,103,104,116,40,45,110,41,58,110,38,38,40,114,61,114,46,100,114,111,112,40,110,41,41,44,116,33,61,61,84,38,38,40,116,61,69,117,40,116,41,44,114,61,48,62,116,63,114,46,100,114,111,112,82,105,103,104,116,40,45,116,41,58,114,46,116,97,107,101,40,116,45,110,41,41,44,114,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,97,107,101,82,105,103,104,116,87,104,105,108,101,61,102,117,110,99,116,105,111,110,40,110,41,123,10,114,101,116,117,114,110,32,116,104,105,115,46,114,101,118,101,114,115,101,40,41,46,116,97,107,101,87,104,105,108,101,40,110,41,46,114,101,118,101,114,115,101,40,41,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,116,111,65,114,114,97,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,97,107,101,40,52,50,57,52,57,54,55,50,57,53,41,125,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,47,94,40,63,58,102,105,108,116,101,114,124,102,105,110,100,124,109,97,112,124,114,101,106,101,99,116,41,124,87,104,105,108,101,36,47,46,116,101,115,116,40,116,41,44,101,61,47,94,40,63,58,104,101,97,100,124,108,97,115,116,41,36,47,46,116,101,115,116,40,116,41,44,117,61,65,110,91,101,63,34,116,97,107,101,34,43,40,34,108,97,115,116,34,61,61,116,63,34,82,105,103,104,116,34,58,34,34,41,58,116,93,44,105,61,101,124,124,47,94,102,105,110,100,47,46,116,101,115,116,40,116,41,59,117,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,116,93,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,41,123,114,101,116,117,114,110,32,110,61,117,46,97,112,112,108,121,40,65,110,44,97,40,91,110,93,44,102,41,41,44,101,38,38,104,63,110,91,48,93,58,110,125,118,97,114,32,111,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,102,61,101,63,91,49,93,58,97,114,103,117,109,101,110,116,115,44,99,61,111,32,105,110,115,116,97,110,99,101,111,102,32,85,110,44,108,61,102,91,48,93,44,115,61,99,124,124,102,102,40,111,41,59,115,38,38,114,38,38,116,121,112,101,111,102,32,108,61,61,34,102,117,110,99,116,105,111,110,34,38,38,49,33,61,108,46,108,101,110,103,116,104,38,38,40,99,61,115,61,102,97,108,115,101,41,59,118,97,114,32,104,61,116,104,105,115,46,95,95,99,104,97,105,110,95,95,44,112,61,33,33,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,44,108,61,105,38,38,33,104,44,99,61,99,38,38,33,112,59,10,114,101,116,117,114,110,33,105,38,38,115,63,40,111,61,99,63,111,58,110,101,119,32,85,110,40,116,104,105,115,41,44,111,61,110,46,97,112,112,108,121,40,111,44,102,41,44,111,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,116,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,111,44,104,41,41,58,108,38,38,99,63,110,46,97,112,112,108,121,40,116,104,105,115,44,102,41,58,40,111,61,116,104,105,115,46,116,104,114,117,40,116,41,44,108,63,101,63,111,46,118,97,108,117,101,40,41,91,48,93,58,111,46,118,97,108,117,101,40,41,58,111,41,125,41,125,41,44,114,40,34,112,111,112,32,112,117,115,104,32,115,104,105,102,116,32,115,111,114,116,32,115,112,108,105,99,101,32,117,110,115,104,105,102,116,34,46,115,112,108,105,116,40,34,32,34,41,44,102,117,110,99,116,105,111,110,40,110,41,123,118,97,114,32,116,61,114,105,91,110,93,44,114,61,47,94,40,63,58,112,117,115,104,124,115,111,114,116,124,117,110,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,63,34,116,97,112,34,58,34,116,104,114,117,34,44,101,61,47,94,40,63,58,112,111,112,124,115,104,105,102,116,41,36,47,46,116,101,115,116,40,110,41,59,65,110,46,112,114,111,116,111,116,121,112,101,91,110,93,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,59,105,102,40,101,38,38,33,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,123,118,97,114,32,117,61,116,104,105,115,46,118,97,108,117,101,40,41,59,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,117,41,63,117,58,91,93,44,110,41,125,114,101,116,117,114,110,32,116,104,105,115,91,114,93,40,102,117,110,99,116,105,111,110,40,114,41,123,114,101,116,117,114,110,32,116,46,97,112,112,108,121,40,102,102,40,114,41,63,114,58,91,93,44,110,41,125,41,59,10,125,125,41,44,109,116,40,85,110,46,112,114,111,116,111,116,121,112,101,44,102,117,110,99,116,105,111,110,40,110,44,116,41,123,118,97,114,32,114,61,65,110,91,116,93,59,105,102,40,114,41,123,118,97,114,32,101,61,114,46,110,97,109,101,43,34,34,59,111,105,46,99,97,108,108,40,71,105,44,101,41,124,124,40,71,105,91,101,93,61,91,93,41,44,71,105,91,101,93,46,112,117,115,104,40,123,110,97,109,101,58,116,44,102,117,110,99,58,114,125,41,125,125,41,44,71,105,91,74,114,40,84,44,50,41,46,110,97,109,101,93,61,91,123,110,97,109,101,58,34,119,114,97,112,112,101,114,34,44,102,117,110,99,58,84,125,93,44,85,110,46,112,114,111,116,111,116,121,112,101,46,99,108,111,110,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,41,59,114,101,116,117,114,110,32,110,46,95,95,97,99,116,105,111,110,115,95,95,61,85,114,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,44,110,46,95,95,100,105,114,95,95,61,116,104,105,115,46,95,95,100,105,114,95,95,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,44,110,46,95,95,105,116,101,114,97,116,101,101,115,95,95,61,85,114,40,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,41,44,110,46,95,95,116,97,107,101,67,111,117,110,116,95,95,61,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,44,110,46,95,95,118,105,101,119,115,95,95,61,85,114,40,116,104,105,115,46,95,95,118,105,101,119,115,95,95,41,44,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,95,95,102,105,108,116,101,114,101,100,95,95,41,123,118,97,114,32,110,61,110,101,119,32,85,110,40,116,104,105,115,41,59,10,110,46,95,95,100,105,114,95,95,61,45,49,44,110,46,95,95,102,105,108,116,101,114,101,100,95,95,61,116,114,117,101,125,101,108,115,101,32,110,61,116,104,105,115,46,99,108,111,110,101,40,41,44,110,46,95,95,100,105,114,95,95,42,61,45,49,59,114,101,116,117,114,110,32,110,125,44,85,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,44,116,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,46,118,97,108,117,101,40,41,44,114,61,116,104,105,115,46,95,95,100,105,114,95,95,44,101,61,102,102,40,116,41,44,117,61,48,62,114,44,105,61,101,63,116,46,108,101,110,103,116,104,58,48,59,110,61,105,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,95,95,118,105,101,119,115,95,95,44,102,61,48,44,99,61,45,49,44,97,61,111,46,108,101,110,103,116,104,59,43,43,99,60,97,59,41,123,118,97,114,32,108,61,111,91,99,93,44,115,61,108,46,115,105,122,101,59,115,119,105,116,99,104,40,108,46,116,121,112,101,41,123,99,97,115,101,34,100,114,111,112,34,58,102,43,61,115,59,98,114,101,97,107,59,99,97,115,101,34,100,114,111,112,82,105,103,104,116,34,58,110,45,61,115,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,34,58,110,61,67,105,40,110,44,102,43,115,41,59,98,114,101,97,107,59,99,97,115,101,34,116,97,107,101,82,105,103,104,116,34,58,102,61,85,105,40,102,44,110,45,115,41,125,125,105,102,40,110,61,123,115,116,97,114,116,58,102,44,101,110,100,58,110,125,44,111,61,110,46,115,116,97,114,116,44,102,61,110,46,101,110,100,44,110,61,102,45,111,44,111,61,117,63,102,58,111,45,49,44,102,61,116,104,105,115,46,95,95,105,116,101,114,97,116,101,101,115,95,95,44,99,61,102,46,108,101,110,103,116,104,44,97,61,48,44,108,61,67,105,40,110,44,116,104,105,115,46,95,95,116,97,107,101,67,111,117,110,116,95,95,41,44,33,101,124,124,33,117,38,38,105,61,61,110,38,38,108,61,61,110,41,114,101,116,117,114,110,32,119,114,40,116,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,59,10,101,61,91,93,59,110,58,102,111,114,40,59,110,45,45,38,38,97,60,108,59,41,123,102,111,114,40,111,43,61,114,44,117,61,45,49,44,105,61,116,91,111,93,59,43,43,117,60,99,59,41,123,118,97,114,32,104,61,102,91,117,93,44,115,61,104,46,116,121,112,101,44,104,61,40,48,44,104,46,105,116,101,114,97,116,101,101,41,40,105,41,59,105,102,40,50,61,61,115,41,105,61,104,59,101,108,115,101,32,105,102,40,33,104,41,123,105,102,40,49,61,61,115,41,99,111,110,116,105,110,117,101,32,110,59,98,114,101,97,107,32,110,125,125,101,91,97,43,43,93,61,105,125,114,101,116,117,114,110,32,101,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,97,116,61,84,111,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,104,97,105,110,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,89,101,40,116,104,105,115,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,99,111,109,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,79,110,40,116,104,105,115,46,118,97,108,117,101,40,41,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,110,101,120,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,61,61,84,38,38,40,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,61,109,117,40,116,104,105,115,46,118,97,108,117,101,40,41,41,41,59,118,97,114,32,110,61,116,104,105,115,46,95,95,105,110,100,101,120,95,95,62,61,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,46,108,101,110,103,116,104,59,114,101,116,117,114,110,123,100,111,110,101,58,110,44,118,97,108,117,101,58,110,63,84,58,116,104,105,115,46,95,95,118,97,108,117,101,115,95,95,91,116,104,105,115,46,95,95,105,110,100,101,120,95,95,43,43,93,125,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,112,108,97,110,116,61,102,117,110,99,116,105,111,110,40,110,41,123,10,102,111,114,40,118,97,114,32,116,44,114,61,116,104,105,115,59,114,32,105,110,115,116,97,110,99,101,111,102,32,69,110,59,41,123,118,97,114,32,101,61,70,101,40,114,41,59,101,46,95,95,105,110,100,101,120,95,95,61,48,44,101,46,95,95,118,97,108,117,101,115,95,95,61,84,44,116,63,117,46,95,95,119,114,97,112,112,101,100,95,95,61,101,58,116,61,101,59,118,97,114,32,117,61,101,44,114,61,114,46,95,95,119,114,97,112,112,101,100,95,95,125,114,101,116,117,114,110,32,117,46,95,95,119,114,97,112,112,101,100,95,95,61,110,44,116,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,114,101,118,101,114,115,101,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,110,61,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,59,114,101,116,117,114,110,32,110,32,105,110,115,116,97,110,99,101,111,102,32,85,110,63,40,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,46,108,101,110,103,116,104,38,38,40,110,61,110,101,119,32,85,110,40,116,104,105,115,41,41,44,110,61,110,46,114,101,118,101,114,115,101,40,41,44,110,46,95,95,97,99,116,105,111,110,115,95,95,46,112,117,115,104,40,123,102,117,110,99,58,81,101,44,97,114,103,115,58,91,71,101,93,44,116,104,105,115,65,114,103,58,84,125,41,44,110,101,119,32,79,110,40,110,44,116,104,105,115,46,95,95,99,104,97,105,110,95,95,41,41,58,116,104,105,115,46,116,104,114,117,40,71,101,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,116,111,74,83,79,78,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,79,102,61,65,110,46,112,114,111,116,111,116,121,112,101,46,118,97,108,117,101,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,119,114,40,116,104,105,115,46,95,95,119,114,97,112,112,101,100,95,95,44,116,104,105,115,46,95,95,97,99,116,105,111,110,115,95,95,41,125,44,65,110,46,112,114,111,116,111,116,121,112,101,46,102,105,114,115,116,61,65,110,46,112,114,111,116,111,116,121,112,101,46,104,101,97,100,44,10,119,105,38,38,40,65,110,46,112,114,111,116,111,116,121,112,101,91,119,105,93,61,88,101,41,44,65,110,125,40,41,59,116,121,112,101,111,102,32,100,101,102,105,110,101,61,61,34,102,117,110,99,116,105,111,110,34,38,38,116,121,112,101,111,102,32,100,101,102,105,110,101,46,97,109,100,61,61,34,111,98,106,101,99,116,34,38,38,100,101,102,105,110,101,46,97,109,100,63,40,36,110,46,95,61,114,116,44,32,100,101,102,105,110,101,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,114,116,125,41,41,58,78,110,63,40,40,78,110,46,101,120,112,111,114,116,115,61,114,116,41,46,95,61,114,116,44,70,110,46,95,61,114,116,41,58,36,110,46,95,61,114,116,125,41,46,99,97,108,108,40,116,104,105,115,41,59,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,51,46,49,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,61,116,40,101,46,95,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,102,117,110,99,116,105,111,110,32,116,40,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,121,110,97,109,105,99,32,114,101,113,117,105,114,101,115,32,97,114,101,32,110,111,116,32,99,117,114,114,101,110,116,108,121,32,115,117,112,112,111,114,116,101,100,32,98,121,32,114,111,108,108,117,112,45,112,108,117,103,105,110,45,99,111,109,109,111,110,106,115,34,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,61,123,101,120,112,111,114,116,115,58,123,125,125,44,101,40,116,44,116,46,101,120,112,111,114,116,115,41,44,116,46,101,120,112,111,114,116,115,125,102,117,110,99,116,105,111,110,32,105,40,101,44,116,41,123,118,97,114,32,110,61,116,124,124,48,44,105,61,95,59,114,101,116,117,114,110,32,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,34,45,34,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,34,45,34,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,34,45,34,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,34,45,34,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,43,105,91,101,91,110,43,43,93,93,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,38,38,110,124,124,48,59,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,38,38,40,116,61,34,98,105,110,97,114,121,34,61,61,61,101,63,110,101,119,32,65,114,114,97,121,40,49,54,41,58,110,117,108,108,44,101,61,110,117,108,108,41,59,118,97,114,32,114,61,40,101,61,101,124,124,123,125,41,46,114,97,110,100,111,109,124,124,40,101,46,114,110,103,124,124,107,41,40,41,59,105,102,40,114,91,54,93,61,49,53,38,114,91,54,93,124,54,52,44,114,91,56,93,61,54,51,38,114,91,56,93,124,49,50,56,44,116,41,102,111,114,40,118,97,114,32,115,61,48,59,115,60,49,54,59,43,43,115,41,116,91,105,43,115,93,61,114,91,115,93,59,114,101,116,117,114,110,32,116,124,124,109,40,114,41,125,102,117,110,99,116,105,111,110,32,115,40,116,41,123,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,46,95,116,114,101,101,46,100,101,102,97,117,108,116,83,116,97,116,101,44,102,117,110,99,116,105,111,110,40,101,44,110,41,123,116,46,115,116,97,116,101,40,110,44,101,41,125,41,44,116,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,44,110,44,105,44,114,41,123,114,101,116,117,114,110,32,105,46,115,116,97,116,101,40,101,41,33,61,61,116,38,38,40,105,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,105,46,95,116,114,101,101,46,99,111,110,102,105,103,46,110,111,100,101,115,46,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,38,38,34,114,101,115,116,111,114,101,100,34,61,61,61,110,38,38,115,40,105,41,44,105,46,115,116,97,116,101,40,101,44,116,41,44,105,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,34,43,110,44,105,44,33,49,41,44,114,38,38,105,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,105,46,99,104,105,108,100,114,101,110,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,105,41,123,111,40,101,44,116,44,110,44,105,41,125,41,44,105,46,109,97,114,107,68,105,114,116,121,40,41,44,105,46,95,116,114,101,101,46,101,110,100,40,41,41,44,105,125,102,117,110,99,116,105,111,110,32,97,40,101,44,116,41,123,105,102,40,116,41,114,101,116,117,114,110,32,116,104,105,115,46,101,120,116,114,97,99,116,40,101,41,59,118,97,114,32,110,61,99,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,102,108,97,116,116,101,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,40,34,114,101,109,111,118,101,100,34,61,61,61,101,124,124,33,116,46,114,101,109,111,118,101,100,40,41,41,38,38,110,40,116,41,125,41,125,102,117,110,99,116,105,111,110,32,117,40,116,44,110,44,105,44,114,41,123,114,101,116,117,114,110,32,110,61,101,46,99,97,115,116,65,114,114,97,121,40,110,41,44,116,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,91,114,63,34,114,101,99,117,114,115,101,68,111,119,110,34,58,34,101,97,99,104,34,93,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,110,41,123,101,46,105,115,70,117,110,99,116,105,111,110,40,116,91,110,93,41,38,38,116,91,110,93,46,97,112,112,108,121,40,116,44,105,41,125,41,125,41,44,116,46,95,116,114,101,101,46,101,110,100,40,41,44,116,125,102,117,110,99,116,105,111,110,32,99,40,116,41,123,118,97,114,32,110,61,116,59,114,101,116,117,114,110,32,101,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,110,61,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,101,46,105,115,70,117,110,99,116,105,111,110,40,110,91,116,93,41,63,110,91,116,93,40,41,58,110,91,116,93,125,41,44,110,125,102,117,110,99,116,105,111,110,32,108,40,116,44,110,41,123,118,97,114,32,105,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,32,105,110,115,116,97,110,99,101,111,102,32,80,63,101,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,105,61,108,40,101,44,110,41,125,41,58,116,32,105,110,115,116,97,110,99,101,111,102,32,83,38,38,33,49,33,61,61,40,105,61,110,40,116,41,41,38,38,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,105,61,108,40,116,46,99,104,105,108,100,114,101,110,44,110,41,41,44,105,125,102,117,110,99,116,105,111,110,32,104,40,116,41,123,114,101,116,117,114,110,32,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,105,102,40,33,101,46,105,115,79,98,106,101,99,116,40,116,41,41,114,101,116,117,114,110,32,105,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,80,114,111,109,105,115,101,34,41,41,59,101,46,105,115,70,117,110,99,116,105,111,110,40,116,46,116,104,101,110,41,38,38,116,46,116,104,101,110,40,110,41,44,101,46,105,115,70,117,110,99,116,105,111,110,40,116,46,101,114,114,111,114,41,63,116,46,101,114,114,111,114,40,105,41,58,101,46,105,115,70,117,110,99,116,105,111,110,40,116,46,99,97,116,99,104,41,38,38,116,46,99,97,116,99,104,40,105,41,125,41,125,102,117,110,99,116,105,111,110,32,100,40,116,44,110,41,123,118,97,114,32,105,61,123,125,59,114,101,116,117,114,110,40,110,61,101,46,99,97,115,116,65,114,114,97,121,40,110,41,41,46,112,117,115,104,40,34,114,101,102,34,41,44,101,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,116,44,114,41,123,101,46,105,110,99,108,117,100,101,115,40,110,44,114,41,124,124,40,105,91,114,93,61,101,46,99,108,111,110,101,68,101,101,112,40,116,41,41,125,41,44,105,125,102,117,110,99,116,105,111,110,32,102,40,116,44,110,44,105,41,123,110,46,105,100,61,110,46,105,100,124,124,98,40,41,44,34,115,116,114,105,110,103,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,34,110,117,109,98,101,114,34,33,61,116,121,112,101,111,102,32,110,46,105,100,38,38,40,110,46,105,100,61,110,46,105,100,46,116,111,83,116,114,105,110,103,40,41,41,59,118,97,114,32,114,61,110,46,105,116,114,101,101,61,110,46,105,116,114,101,101,124,124,123,125,59,114,46,105,99,111,110,61,114,46,105,99,111,110,124,124,33,49,44,114,46,100,105,114,116,121,61,33,49,59,118,97,114,32,115,61,114,46,108,105,61,114,46,108,105,124,124,123,125,59,115,46,97,116,116,114,105,98,117,116,101,115,61,115,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,111,61,114,46,97,61,114,46,97,124,124,123,125,59,111,46,97,116,116,114,105,98,117,116,101,115,61,111,46,97,116,116,114,105,98,117,116,101,115,124,124,123,125,59,118,97,114,32,97,61,114,46,115,116,97,116,101,61,114,46,115,116,97,116,101,124,124,123,125,59,114,101,116,117,114,110,32,97,46,99,111,108,108,97,112,115,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,99,111,108,108,97,112,115,101,100,63,97,46,99,111,108,108,97,112,115,101,100,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,99,111,108,108,97,112,115,101,100,44,97,46,115,101,108,101,99,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,115,101,108,101,99,116,97,98,108,101,63,97,46,115,101,108,101,99,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,97,98,108,101,44,97,46,100,114,97,103,103,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,100,114,97,103,103,97,98,108,101,63,97,46,100,114,97,103,103,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,100,114,97,103,103,97,98,108,101,44,97,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,63,97,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,91,34,100,114,111,112,45,116,97,114,103,101,116,34,93,44,97,46,99,104,101,99,107,101,100,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,99,104,101,99,107,101,100,38,38,97,46,99,104,101,99,107,101,100,44,97,46,101,100,105,116,97,98,108,101,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,101,100,105,116,97,98,108,101,63,97,46,101,100,105,116,97,98,108,101,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,97,98,108,101,44,97,46,101,100,105,116,105,110,103,61,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,97,46,101,100,105,116,105,110,103,63,97,46,101,100,105,116,105,110,103,58,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,101,100,105,116,105,110,103,44,97,46,102,111,99,117,115,101,100,61,97,46,102,111,99,117,115,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,102,111,99,117,115,101,100,44,97,46,104,105,100,100,101,110,61,97,46,104,105,100,100,101,110,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,104,105,100,100,101,110,44,97,46,105,110,100,101,116,101,114,109,105,110,97,116,101,61,97,46,105,110,100,101,116,101,114,109,105,110,97,116,101,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,97,46,108,111,97,100,105,110,103,61,97,46,108,111,97,100,105,110,103,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,108,111,97,100,105,110,103,44,97,46,114,101,109,111,118,101,100,61,97,46,114,101,109,111,118,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,109,111,118,101,100,44,97,46,114,101,110,100,101,114,101,100,61,97,46,114,101,110,100,101,114,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,114,101,110,100,101,114,101,100,44,97,46,115,101,108,101,99,116,101,100,61,97,46,115,101,108,101,99,116,101,100,124,124,116,46,100,101,102,97,117,108,116,83,116,97,116,101,46,115,101,108,101,99,116,101,100,44,110,46,105,116,114,101,101,46,112,97,114,101,110,116,61,105,44,110,61,101,46,97,115,115,105,103,110,40,110,101,119,32,83,40,116,41,44,110,41,44,101,46,105,115,65,114,114,97,121,76,105,107,101,40,110,46,99,104,105,108,100,114,101,110,41,38,38,40,110,46,99,104,105,108,100,114,101,110,61,118,40,116,44,110,46,99,104,105,108,100,114,101,110,44,110,41,41,44,116,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,38,38,101,46,101,97,99,104,40,116,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,41,123,97,91,101,93,38,38,116,46,101,109,105,116,40,34,110,111,100,101,46,34,43,101,44,110,44,33,48,41,125,41,44,110,125,102,117,110,99,116,105,111,110,32,118,40,116,44,110,44,105,41,123,118,97,114,32,114,61,110,101,119,32,80,40,116,41,59,114,101,116,117,114,110,32,116,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,110,61,101,46,115,111,114,116,66,121,40,110,44,116,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,101,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,102,40,116,44,101,44,105,41,41,125,41,44,114,46,95,99,111,110,116,101,120,116,61,105,44,114,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,101,46,109,111,100,101,108,91,116,93,46,97,112,112,108,121,40,101,46,109,111,100,101,108,44,110,41,125,102,111,114,40,118,97,114,32,112,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,103,108,111,98,97,108,63,103,108,111,98,97,108,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,63,115,101,108,102,58,123,125,44,107,61,110,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,99,114,121,112,116,111,38,38,99,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,99,114,121,112,116,111,41,124,124,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,115,67,114,121,112,116,111,38,38,109,115,67,114,121,112,116,111,46,103,101,116,82,97,110,100,111,109,86,97,108,117,101,115,46,98,105,110,100,40,109,115,67,114,121,112,116,111,41,59,105,102,40,116,41,123,118,97,114,32,110,61,110,101,119,32,85,105,110,116,56,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,110,41,44,110,125,125,101,108,115,101,123,118,97,114,32,105,61,110,101,119,32,65,114,114,97,121,40,49,54,41,59,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,44,116,61,48,59,116,60,49,54,59,116,43,43,41,48,61,61,40,51,38,116,41,38,38,40,101,61,52,50,57,52,57,54,55,50,57,54,42,77,97,116,104,46,114,97,110,100,111,109,40,41,41,44,105,91,116,93,61,101,62,62,62,40,40,51,38,116,41,60,60,51,41,38,50,53,53,59,114,101,116,117,114,110,32,105,125,125,125,41,44,95,61,91,93,44,103,61,48,59,103,60,50,53,54,59,43,43,103,41,95,91,103,93,61,40,103,43,50,53,54,41,46,116,111,83,116,114,105,110,103,40,49,54,41,46,115,117,98,115,116,114,40,49,41,59,118,97,114,32,109,61,105,44,98,61,114,44,119,61,110,40,102,117,110,99,116,105,111,110,40,101,44,110,41,123,47,42,33,10,32,42,32,64,111,118,101,114,118,105,101,119,32,101,115,54,45,112,114,111,109,105,115,101,32,45,32,97,32,116,105,110,121,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,80,114,111,109,105,115,101,115,47,65,43,46,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,52,32,89,101,104,117,100,97,32,75,97,116,122,44,32,84,111,109,32,68,97,108,101,44,32,83,116,101,102,97,110,32,80,101,110,110,101,114,32,97,110,100,32,99,111,110,116,114,105,98,117,116,111,114,115,32,40,67,111,110,118,101,114,115,105,111,110,32,116,111,32,69,83,54,32,65,80,73,32,98,121,32,74,97,107,101,32,65,114,99,104,105,98,97,108,100,41,10,32,42,32,64,108,105,99,101,110,115,101,32,32,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,32,108,105,99,101,110,115,101,10,32,42,32,32,32,32,32,32,32,32,32,32,32,32,83,101,101,32,104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,115,116,101,102,97,110,112,101,110,110,101,114,47,101,115,54,45,112,114,111,109,105,115,101,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,32,64,118,101,114,115,105,111,110,32,32,32,118,52,46,50,46,50,43,57,55,52,55,56,101,98,54,10,32,42,47,10,33,102,117,110,99,116,105,111,110,40,110,44,105,41,123,101,46,101,120,112,111,114,116,115,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,32,110,117,108,108,33,61,61,101,38,38,40,34,111,98,106,101,99,116,34,61,61,61,116,124,124,34,102,117,110,99,116,105,111,110,34,61,61,61,116,41,125,102,117,110,99,116,105,111,110,32,110,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,113,61,101,125,102,117,110,99,116,105,111,110,32,114,40,101,41,123,72,61,101,125,102,117,110,99,116,105,111,110,32,115,40,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,85,63,102,117,110,99,116,105,111,110,40,41,123,85,40,97,41,125,58,111,40,41,125,102,117,110,99,116,105,111,110,32,111,40,41,123,118,97,114,32,101,61,115,101,116,84,105,109,101,111,117,116,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,40,97,44,49,41,125,125,102,117,110,99,116,105,111,110,32,97,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,82,59,101,43,61,50,41,40,48,44,74,91,101,93,41,40,74,91,101,43,49,93,41,44,74,91,101,93,61,118,111,105,100,32,48,44,74,91,101,43,49,93,61,118,111,105,100,32,48,59,82,61,48,125,102,117,110,99,116,105,111,110,32,117,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,116,104,105,115,46,99,111,110,115,116,114,117,99,116,111,114,40,108,41,59,118,111,105,100,32,48,61,61,61,105,91,88,93,38,38,69,40,105,41,59,118,97,114,32,114,61,110,46,95,115,116,97,116,101,59,105,102,40,114,41,123,118,97,114,32,115,61,97,114,103,117,109,101,110,116,115,91,114,45,49,93,59,72,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,67,40,114,44,105,44,115,44,110,46,95,114,101,115,117,108,116,41,125,41,125,101,108,115,101,32,120,40,110,44,105,44,101,44,116,41,59,114,101,116,117,114,110,32,105,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,105,102,40,101,38,38,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,38,38,101,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,116,41,114,101,116,117,114,110,32,101,59,118,97,114,32,110,61,110,101,119,32,116,40,108,41,59,114,101,116,117,114,110,32,103,40,110,44,101,41,44,110,125,102,117,110,99,116,105,111,110,32,108,40,41,123,125,102,117,110,99,116,105,111,110,32,104,40,41,123,114,101,116,117,114,110,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,99,97,110,110,111,116,32,114,101,115,111,108,118,101,32,97,32,112,114,111,109,105,115,101,32,119,105,116,104,32,105,116,115,101,108,102,34,41,125,102,117,110,99,116,105,111,110,32,100,40,41,123,114,101,116,117,114,110,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,65,32,112,114,111,109,105,115,101,115,32,99,97,108,108,98,97,99,107,32,99,97,110,110,111,116,32,114,101,116,117,114,110,32,116,104,97,116,32,115,97,109,101,32,112,114,111,109,105,115,101,46,34,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,116,114,121,123,114,101,116,117,114,110,32,101,46,116,104,101,110,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,116,101,46,101,114,114,111,114,61,101,44,116,101,125,125,102,117,110,99,116,105,111,110,32,118,40,101,44,116,44,110,44,105,41,123,116,114,121,123,101,46,99,97,108,108,40,116,44,110,44,105,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,101,125,125,102,117,110,99,116,105,111,110,32,121,40,101,44,116,44,110,41,123,72,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,105,61,33,49,44,114,61,118,40,110,44,116,44,102,117,110,99,116,105,111,110,40,110,41,123,105,124,124,40,105,61,33,48,44,116,33,61,61,110,63,103,40,101,44,110,41,58,98,40,101,44,110,41,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,105,124,124,40,105,61,33,48,44,119,40,101,44,116,41,41,125,44,34,83,101,116,116,108,101,58,32,34,43,40,101,46,95,108,97,98,101,108,124,124,34,32,117,110,107,110,111,119,110,32,112,114,111,109,105,115,101,34,41,41,59,33,105,38,38,114,38,38,40,105,61,33,48,44,119,40,101,44,114,41,41,125,44,101,41,125,102,117,110,99,116,105,111,110,32,107,40,101,44,116,41,123,116,46,95,115,116,97,116,101,61,61,61,36,63,98,40,101,44,116,46,95,114,101,115,117,108,116,41,58,116,46,95,115,116,97,116,101,61,61,61,101,101,63,119,40,101,44,116,46,95,114,101,115,117,108,116,41,58,120,40,116,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,103,40,101,44,116,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,119,40,101,44,116,41,125,41,125,102,117,110,99,116,105,111,110,32,95,40,101,44,116,44,105,41,123,116,46,99,111,110,115,116,114,117,99,116,111,114,61,61,61,101,46,99,111,110,115,116,114,117,99,116,111,114,38,38,105,61,61,61,117,38,38,116,46,99,111,110,115,116,114,117,99,116,111,114,46,114,101,115,111,108,118,101,61,61,61,99,63,107,40,101,44,116,41,58,105,61,61,61,116,101,63,40,119,40,101,44,116,101,46,101,114,114,111,114,41,44,116,101,46,101,114,114,111,114,61,110,117,108,108,41,58,118,111,105,100,32,48,61,61,61,105,63,98,40,101,44,116,41,58,110,40,105,41,63,121,40,101,44,116,44,105,41,58,98,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,103,40,116,44,110,41,123,116,61,61,61,110,63,119,40,116,44,104,40,41,41,58,101,40,110,41,63,95,40,116,44,110,44,102,40,110,41,41,58,98,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,109,40,101,41,123,101,46,95,111,110,101,114,114,111,114,38,38,101,46,95,111,110,101,114,114,111,114,40,101,46,95,114,101,115,117,108,116,41,44,68,40,101,41,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,90,38,38,40,101,46,95,114,101,115,117,108,116,61,116,44,101,46,95,115,116,97,116,101,61,36,44,48,33,61,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,38,38,72,40,68,44,101,41,41,125,102,117,110,99,116,105,111,110,32,119,40,101,44,116,41,123,101,46,95,115,116,97,116,101,61,61,61,90,38,38,40,101,46,95,115,116,97,116,101,61,101,101,44,101,46,95,114,101,115,117,108,116,61,116,44,72,40,109,44,101,41,41,125,102,117,110,99,116,105,111,110,32,120,40,101,44,116,44,110,44,105,41,123,118,97,114,32,114,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,115,61,114,46,108,101,110,103,116,104,59,101,46,95,111,110,101,114,114,111,114,61,110,117,108,108,44,114,91,115,93,61,116,44,114,91,115,43,36,93,61,110,44,114,91,115,43,101,101,93,61,105,44,48,61,61,61,115,38,38,101,46,95,115,116,97,116,101,38,38,72,40,68,44,101,41,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,118,97,114,32,116,61,101,46,95,115,117,98,115,99,114,105,98,101,114,115,44,110,61,101,46,95,115,116,97,116,101,59,105,102,40,48,33,61,61,116,46,108,101,110,103,116,104,41,123,102,111,114,40,118,97,114,32,105,61,118,111,105,100,32,48,44,114,61,118,111,105,100,32,48,44,115,61,101,46,95,114,101,115,117,108,116,44,111,61,48,59,111,60,116,46,108,101,110,103,116,104,59,111,43,61,51,41,105,61,116,91,111,93,44,114,61,116,91,111,43,110,93,44,105,63,67,40,110,44,105,44,114,44,115,41,58,114,40,115,41,59,101,46,95,115,117,98,115,99,114,105,98,101,114,115,46,108,101,110,103,116,104,61,48,125,125,102,117,110,99,116,105,111,110,32,65,40,41,123,116,104,105,115,46,101,114,114,111,114,61,110,117,108,108,125,102,117,110,99,116,105,111,110,32,76,40,101,44,116,41,123,116,114,121,123,114,101,116,117,114,110,32,101,40,116,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,110,101,46,101,114,114,111,114,61,101,44,110,101,125,125,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,105,44,114,41,123,118,97,114,32,115,61,110,40,105,41,44,111,61,118,111,105,100,32,48,44,97,61,118,111,105,100,32,48,44,117,61,118,111,105,100,32,48,44,99,61,118,111,105,100,32,48,59,105,102,40,115,41,123,105,102,40,111,61,76,40,105,44,114,41,44,111,61,61,61,110,101,63,40,99,61,33,48,44,97,61,111,46,101,114,114,111,114,44,111,46,101,114,114,111,114,61,110,117,108,108,41,58,117,61,33,48,44,116,61,61,61,111,41,114,101,116,117,114,110,32,118,111,105,100,32,119,40,116,44,100,40,41,41,125,101,108,115,101,32,111,61,114,44,117,61,33,48,59,116,46,95,115,116,97,116,101,33,61,61,90,124,124,40,115,38,38,117,63,103,40,116,44,111,41,58,99,63,119,40,116,44,97,41,58,101,61,61,61,36,63,98,40,116,44,111,41,58,101,61,61,61,101,101,38,38,119,40,116,44,111,41,41,125,102,117,110,99,116,105,111,110,32,80,40,101,44,116,41,123,116,114,121,123,116,40,102,117,110,99,116,105,111,110,40,116,41,123,103,40,101,44,116,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,119,40,101,44,116,41,125,41,125,99,97,116,99,104,40,116,41,123,119,40,101,44,116,41,125,125,102,117,110,99,116,105,111,110,32,83,40,41,123,114,101,116,117,114,110,32,105,101,43,43,125,102,117,110,99,116,105,111,110,32,69,40,101,41,123,101,91,88,93,61,105,101,43,43,44,101,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,101,46,95,114,101,115,117,108,116,61,118,111,105,100,32,48,44,101,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,125,102,117,110,99,116,105,111,110,32,79,40,41,123,114,101,116,117,114,110,32,110,101,119,32,69,114,114,111,114,40,34,65,114,114,97,121,32,77,101,116,104,111,100,115,32,109,117,115,116,32,98,101,32,112,114,111,118,105,100,101,100,32,97,110,32,65,114,114,97,121,34,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,114,101,40,116,104,105,115,44,101,41,46,112,114,111,109,105,115,101,125,102,117,110,99,116,105,111,110,32,78,40,101,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,116,40,66,40,101,41,63,102,117,110,99,116,105,111,110,40,110,44,105,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,44,115,61,48,59,115,60,114,59,115,43,43,41,116,46,114,101,115,111,108,118,101,40,101,91,115,93,41,46,116,104,101,110,40,110,44,105,41,125,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,110,32,97,114,114,97,121,32,116,111,32,114,97,99,101,46,34,41,41,125,41,125,102,117,110,99,116,105,111,110,32,84,40,101,41,123,118,97,114,32,116,61,110,101,119,32,116,104,105,115,40,108,41,59,114,101,116,117,114,110,32,119,40,116,44,101,41,44,116,125,102,117,110,99,116,105,111,110,32,77,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,89,111,117,32,109,117,115,116,32,112,97,115,115,32,97,32,114,101,115,111,108,118,101,114,32,102,117,110,99,116,105,111,110,32,97,115,32,116,104,101,32,102,105,114,115,116,32,97,114,103,117,109,101,110,116,32,116,111,32,116,104,101,32,112,114,111,109,105,115,101,32,99,111,110,115,116,114,117,99,116,111,114,34,41,125,102,117,110,99,116,105,111,110,32,70,40,41,123,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,70,97,105,108,101,100,32,116,111,32,99,111,110,115,116,114,117,99,116,32,39,80,114,111,109,105,115,101,39,58,32,80,108,101,97,115,101,32,117,115,101,32,116,104,101,32,39,110,101,119,39,32,111,112,101,114,97,116,111,114,44,32,116,104,105,115,32,111,98,106,101,99,116,32,99,111,110,115,116,114,117,99,116,111,114,32,99,97,110,110,111,116,32,98,101,32,99,97,108,108,101,100,32,97,115,32,97,32,102,117,110,99,116,105,111,110,46,34,41,125,102,117,110,99,116,105,111,110,32,86,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,118,111,105,100,32,48,33,61,61,112,41,101,61,112,59,101,108,115,101,32,105,102,40,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,115,101,108,102,41,101,61,115,101,108,102,59,101,108,115,101,32,116,114,121,123,101,61,70,117,110,99,116,105,111,110,40,34,114,101,116,117,114,110,32,116,104,105,115,34,41,40,41,125,99,97,116,99,104,40,101,41,123,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,112,111,108,121,102,105,108,108,32,102,97,105,108,101,100,32,98,101,99,97,117,115,101,32,103,108,111,98,97,108,32,111,98,106,101,99,116,32,105,115,32,117,110,97,118,97,105,108,97,98,108,101,32,105,110,32,116,104,105,115,32,101,110,118,105,114,111,110,109,101,110,116,34,41,125,118,97,114,32,116,61,101,46,80,114,111,109,105,115,101,59,105,102,40,116,41,123,118,97,114,32,110,61,110,117,108,108,59,116,114,121,123,110,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,116,46,114,101,115,111,108,118,101,40,41,41,125,99,97,116,99,104,40,101,41,123,125,105,102,40,34,91,111,98,106,101,99,116,32,80,114,111,109,105,115,101,93,34,61,61,61,110,38,38,33,116,46,99,97,115,116,41,114,101,116,117,114,110,125,101,46,80,114,111,109,105,115,101,61,115,101,125,118,97,114,32,73,61,118,111,105,100,32,48,44,66,61,73,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,82,61,48,44,85,61,118,111,105,100,32,48,44,113,61,118,111,105,100,32,48,44,72,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,74,91,82,93,61,101,44,74,91,82,43,49,93,61,116,44,50,61,61,61,40,82,43,61,50,41,38,38,40,113,63,113,40,97,41,58,81,40,41,41,125,44,87,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,119,105,110,100,111,119,63,119,105,110,100,111,119,58,118,111,105,100,32,48,44,122,61,87,124,124,123,125,44,89,61,122,46,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,124,124,122,46,87,101,98,75,105,116,77,117,116,97,116,105,111,110,79,98,115,101,114,118,101,114,44,75,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,115,101,108,102,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,34,91,111,98,106,101,99,116,32,112,114,111,99,101,115,115,93,34,61,61,61,123,125,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,112,114,111,99,101,115,115,41,44,71,61,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,85,105,110,116,56,67,108,97,109,112,101,100,65,114,114,97,121,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,105,109,112,111,114,116,83,99,114,105,112,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,44,74,61,110,101,119,32,65,114,114,97,121,40,49,101,51,41,44,81,61,118,111,105,100,32,48,59,81,61,75,63,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,112,114,111,99,101,115,115,46,110,101,120,116,84,105,99,107,40,97,41,125,125,40,41,58,89,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,48,44,116,61,110,101,119,32,89,40,97,41,44,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,59,114,101,116,117,114,110,32,116,46,111,98,115,101,114,118,101,40,110,44,123,99,104,97,114,97,99,116,101,114,68,97,116,97,58,33,48,125,41,44,102,117,110,99,116,105,111,110,40,41,123,110,46,100,97,116,97,61,101,61,43,43,101,37,50,125,125,40,41,58,71,63,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,77,101,115,115,97,103,101,67,104,97,110,110,101,108,59,114,101,116,117,114,110,32,101,46,112,111,114,116,49,46,111,110,109,101,115,115,97,103,101,61,97,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,112,111,114,116,50,46,112,111,115,116,77,101,115,115,97,103,101,40,48,41,125,125,40,41,58,118,111,105,100,32,48,61,61,61,87,38,38,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,63,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,116,40,34,118,101,114,116,120,34,41,59,114,101,116,117,114,110,32,85,61,101,46,114,117,110,79,110,76,111,111,112,124,124,101,46,114,117,110,79,110,67,111,110,116,101,120,116,44,115,40,41,125,99,97,116,99,104,40,101,41,123,114,101,116,117,114,110,32,111,40,41,125,125,40,41,58,111,40,41,59,118,97,114,32,88,61,77,97,116,104,46,114,97,110,100,111,109,40,41,46,116,111,83,116,114,105,110,103,40,51,54,41,46,115,117,98,115,116,114,105,110,103,40,49,54,41,44,90,61,118,111,105,100,32,48,44,36,61,49,44,101,101,61,50,44,116,101,61,110,101,119,32,65,44,110,101,61,110,101,119,32,65,44,105,101,61,48,44,114,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,61,101,44,116,104,105,115,46,112,114,111,109,105,115,101,61,110,101,119,32,101,40,108,41,44,116,104,105,115,46,112,114,111,109,105,115,101,91,88,93,124,124,69,40,116,104,105,115,46,112,114,111,109,105,115,101,41,44,66,40,116,41,63,40,116,104,105,115,46,108,101,110,103,116,104,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,61,116,46,108,101,110,103,116,104,44,116,104,105,115,46,95,114,101,115,117,108,116,61,110,101,119,32,65,114,114,97,121,40,116,104,105,115,46,108,101,110,103,116,104,41,44,48,61,61,61,116,104,105,115,46,108,101,110,103,116,104,63,98,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,58,40,116,104,105,115,46,108,101,110,103,116,104,61,116,104,105,115,46,108,101,110,103,116,104,124,124,48,44,116,104,105,115,46,95,101,110,117,109,101,114,97,116,101,40,116,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,98,40,116,104,105,115,46,112,114,111,109,105,115,101,44,116,104,105,115,46,95,114,101,115,117,108,116,41,41,41,58,119,40,116,104,105,115,46,112,114,111,109,105,115,101,44,79,40,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,95,101,110,117,109,101,114,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,59,116,104,105,115,46,95,115,116,97,116,101,61,61,61,90,38,38,116,60,101,46,108,101,110,103,116,104,59,116,43,43,41,116,104,105,115,46,95,101,97,99,104,69,110,116,114,121,40,101,91,116,93,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,101,97,99,104,69,110,116,114,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,95,105,110,115,116,97,110,99,101,67,111,110,115,116,114,117,99,116,111,114,44,105,61,110,46,114,101,115,111,108,118,101,59,105,102,40,105,61,61,61,99,41,123,118,97,114,32,114,61,102,40,101,41,59,105,102,40,114,61,61,61,117,38,38,101,46,95,115,116,97,116,101,33,61,61,90,41,116,104,105,115,46,95,115,101,116,116,108,101,100,65,116,40,101,46,95,115,116,97,116,101,44,116,44,101,46,95,114,101,115,117,108,116,41,59,101,108,115,101,32,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,114,41,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,101,59,101,108,115,101,32,105,102,40,110,61,61,61,115,101,41,123,118,97,114,32,115,61,110,101,119,32,110,40,108,41,59,95,40,115,44,101,44,114,41,44,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,115,44,116,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,110,101,119,32,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,44,116,41,125,101,108,115,101,32,116,104,105,115,46,95,119,105,108,108,83,101,116,116,108,101,65,116,40,105,40,101,41,44,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,115,101,116,116,108,101,100,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,46,112,114,111,109,105,115,101,59,105,46,95,115,116,97,116,101,61,61,61,90,38,38,40,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,45,45,44,101,61,61,61,101,101,63,119,40,105,44,110,41,58,116,104,105,115,46,95,114,101,115,117,108,116,91,116,93,61,110,41,44,48,61,61,61,116,104,105,115,46,95,114,101,109,97,105,110,105,110,103,38,38,98,40,105,44,116,104,105,115,46,95,114,101,115,117,108,116,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,95,119,105,108,108,83,101,116,116,108,101,65,116,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,120,40,101,44,118,111,105,100,32,48,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,36,44,116,44,101,41,125,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,95,115,101,116,116,108,101,100,65,116,40,101,101,44,116,44,101,41,125,41,125,44,101,125,40,41,44,115,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,116,41,123,116,104,105,115,91,88,93,61,83,40,41,44,116,104,105,115,46,95,114,101,115,117,108,116,61,116,104,105,115,46,95,115,116,97,116,101,61,118,111,105,100,32,48,44,116,104,105,115,46,95,115,117,98,115,99,114,105,98,101,114,115,61,91,93,44,108,33,61,61,116,38,38,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,77,40,41,44,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,63,80,40,116,104,105,115,44,116,41,58,70,40,41,41,125,114,101,116,117,114,110,32,101,46,112,114,111,116,111,116,121,112,101,46,99,97,116,99,104,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,104,101,110,40,110,117,108,108,44,101,41,125,44,101,46,112,114,111,116,111,116,121,112,101,46,102,105,110,97,108,108,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,116,46,99,111,110,115,116,114,117,99,116,111,114,59,114,101,116,117,114,110,32,116,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,101,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,125,41,125,44,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,110,46,114,101,115,111,108,118,101,40,101,40,41,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,116,104,114,111,119,32,116,125,41,125,41,125,44,101,125,40,41,59,114,101,116,117,114,110,32,115,101,46,112,114,111,116,111,116,121,112,101,46,116,104,101,110,61,117,44,115,101,46,97,108,108,61,106,44,115,101,46,114,97,99,101,61,78,44,115,101,46,114,101,115,111,108,118,101,61,99,44,115,101,46,114,101,106,101,99,116,61,84,44,115,101,46,95,115,101,116,83,99,104,101,100,117,108,101,114,61,105,44,115,101,46,95,115,101,116,65,115,97,112,61,114,44,115,101,46,95,97,115,97,112,61,72,44,115,101,46,112,111,108,121,102,105,108,108,61,86,44,115,101,46,80,114,111,109,105,115,101,61,115,101,44,115,101,125,40,41,125,40,41,125,41,46,80,114,111,109,105,115,101,44,120,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,68,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,105,61,116,91,110,93,59,105,46,101,110,117,109,101,114,97,98,108,101,61,105,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,105,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,105,38,38,40,105,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,105,46,107,101,121,44,105,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,44,110,44,105,41,123,114,101,116,117,114,110,32,110,38,38,101,40,116,46,112,114,111,116,111,116,121,112,101,44,110,41,44,105,38,38,101,40,116,44,105,41,44,116,125,125,40,41,44,65,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,76,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,67,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,65,114,114,97,121,46,105,115,65,114,114,97,121,40,101,41,63,101,58,65,114,114,97,121,46,102,114,111,109,40,101,41,125,44,80,61,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,116,44,105,41,123,120,40,116,104,105,115,44,110,41,59,118,97,114,32,114,61,76,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,41,41,59,105,102,40,101,46,105,115,70,117,110,99,116,105,111,110,40,101,46,103,101,116,40,116,44,34,105,115,84,114,101,101,34,41,41,38,38,33,116,46,105,115,84,114,101,101,40,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,116,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,114,46,95,116,114,101,101,61,116,44,114,46,108,101,110,103,116,104,61,48,44,114,46,95,112,97,103,105,110,97,116,105,111,110,61,123,108,105,109,105,116,58,116,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,111,116,97,108,58,48,125,44,40,101,46,105,115,65,114,114,97,121,40,105,41,124,124,105,32,105,110,115,116,97,110,99,101,111,102,32,110,41,38,38,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,83,63,114,46,112,117,115,104,40,101,46,99,108,111,110,101,40,41,41,58,114,46,97,100,100,78,111,100,101,40,101,41,125,41,44,114,125,114,101,116,117,114,110,32,65,40,110,44,116,41,44,68,40,110,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,38,38,40,110,61,101,46,115,111,114,116,101,100,73,110,100,101,120,66,121,40,116,104,105,115,44,116,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,41,44,116,104,105,115,46,105,110,115,101,114,116,65,116,40,110,44,116,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,98,108,117,114,34,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,108,101,97,110,34,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,59,105,46,95,99,111,110,116,101,120,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,83,38,38,105,46,112,117,115,104,40,101,41,125,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,104,105,115,44,114,41,44,101,46,101,97,99,104,40,116,44,114,41,44,105,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,105,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,116,104,105,115,59,114,101,116,117,114,110,123,116,111,58,102,117,110,99,116,105,111,110,40,114,41,123,105,102,40,33,101,46,105,115,70,117,110,99,116,105,111,110,40,114,46,97,100,100,78,111,100,101,115,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,118,97,114,32,115,61,110,101,119,32,110,40,105,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,41,123,115,46,112,117,115,104,40,101,46,99,111,112,121,40,116,41,46,116,111,40,114,41,41,125,41,44,115,125,125,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,116,41,123,116,46,99,104,105,108,100,114,101,110,124,124,101,46,112,117,115,104,40,116,41,125,41,44,101,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,100,101,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,104,105,115,44,116,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,48,44,105,61,102,117,110,99,116,105,111,110,40,41,123,48,61,61,45,45,110,38,38,116,40,101,41,125,59,101,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,110,43,43,44,101,46,99,104,105,108,100,114,101,110,63,101,46,101,120,112,97,110,100,40,41,46,99,97,116,99,104,40,105,41,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,104,105,108,100,114,101,110,46,101,120,112,97,110,100,68,101,101,112,40,41,46,99,97,116,99,104,40,105,41,46,116,104,101,110,40,105,41,125,41,58,105,40,41,125,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,116,104,105,115,46,102,108,97,116,116,101,110,40,116,41,44,114,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,97,100,100,78,111,100,101,40,101,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,125,41,44,114,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,99,40,116,41,44,114,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,105,40,101,41,38,38,114,46,112,117,115,104,40,101,41,125,41,44,114,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,44,105,61,99,40,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,105,40,101,41,38,38,116,46,112,117,115,104,40,101,41,125,41,44,116,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,101,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,101,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,104,105,100,101,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,101,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,105,41,123,105,102,40,105,46,105,100,41,123,118,97,114,32,114,61,116,104,105,115,46,110,111,100,101,40,105,46,105,100,41,59,105,102,40,114,41,114,101,116,117,114,110,32,114,46,114,101,115,116,111,114,101,40,41,46,115,104,111,119,40,41,44,101,46,105,115,65,114,114,97,121,76,105,107,101,40,105,46,99,104,105,108,100,114,101,110,41,63,40,101,46,105,115,65,114,114,97,121,76,105,107,101,40,114,46,99,104,105,108,100,114,101,110,41,124,124,40,114,46,99,104,105,108,100,114,101,110,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,101,46,101,97,99,104,40,105,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,101,41,125,41,41,58,105,46,99,104,105,108,100,114,101,110,38,38,101,46,105,115,66,111,111,108,101,97,110,40,114,46,99,104,105,108,100,114,101,110,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,105,46,99,104,105,108,100,114,101,110,41,44,114,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,114,125,118,97,114,32,115,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,40,105,41,63,105,58,102,40,116,104,105,115,46,95,116,114,101,101,44,105,41,59,114,101,116,117,114,110,32,116,104,105,115,46,115,112,108,105,99,101,40,116,44,48,44,115,41,44,116,104,105,115,46,95,99,111,110,116,101,120,116,38,38,40,115,46,105,116,114,101,101,46,112,97,114,101,110,116,61,116,104,105,115,46,95,99,111,110,116,101,120,116,44,116,104,105,115,46,95,99,111,110,116,101,120,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,97,100,100,101,100,34,44,115,41,44,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,108,101,110,103,116,104,45,49,33,61,61,116,38,38,116,104,105,115,46,105,110,118,111,107,101,40,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,115,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,117,40,116,104,105,115,44,101,44,116,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,117,40,116,104,105,115,44,101,44,116,44,33,48,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,101,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,104,105,115,46,95,108,111,97,100,105,110,103,41,114,101,116,117,114,110,32,119,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,80,101,110,100,105,110,103,32,108,111,97,100,77,111,114,101,32,99,97,108,108,32,109,117,115,116,32,99,111,109,112,108,101,116,101,32,98,101,102,111,114,101,32,98,101,105,110,103,32,105,110,118,111,107,101,100,32,97,103,97,105,110,46,34,41,41,59,118,97,114,32,105,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,61,61,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,63,119,46,114,101,115,111,108,118,101,40,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,48,44,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,43,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,112,97,103,105,110,97,116,101,100,34,44,116,104,105,115,46,95,99,111,110,116,101,120,116,124,124,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,46,112,97,103,105,110,97,116,105,111,110,44,116,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,105,61,116,104,105,115,46,95,99,111,110,116,101,120,116,63,116,104,105,115,46,95,99,111,110,116,101,120,116,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,108,111,97,100,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,58,40,116,104,105,115,46,95,108,111,97,100,105,110,103,61,33,49,44,105,61,119,46,114,101,115,111,108,118,101,40,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,38,38,105,46,116,104,101,110,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,41,123,110,46,95,108,111,97,100,105,110,103,61,33,49,44,110,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,41,44,105,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,50,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,50,93,63,97,114,103,117,109,101,110,116,115,91,50,93,58,116,104,105,115,59,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,116,104,105,115,91,101,93,46,114,101,109,111,118,101,40,41,44,114,61,110,46,105,110,115,101,114,116,65,116,40,116,44,105,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,114,44,116,104,105,115,44,101,44,110,44,116,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,114,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,110,41,123,105,102,40,110,46,105,100,61,61,61,101,41,114,101,116,117,114,110,32,116,61,110,44,33,49,125,41,44,116,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,101,46,105,115,65,114,114,97,121,40,116,41,38,38,40,105,61,110,101,119,32,110,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,116,46,105,110,100,101,120,79,102,40,101,46,105,100,41,62,45,49,38,38,105,46,112,117,115,104,40,101,41,125,41,41,44,101,46,105,115,65,114,114,97,121,40,116,41,63,105,58,116,104,105,115,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,112,97,103,105,110,97,116,105,111,110,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,114,101,109,111,118,101,40,116,104,105,115,44,123,105,100,58,116,46,105,100,125,41,44,101,46,105,110,118,111,107,101,40,116,104,105,115,46,95,99,111,110,116,101,120,116,44,34,109,97,114,107,68,105,114,116,121,34,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,114,101,115,116,111,114,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,101,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,101,108,101,99,116,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,101,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,104,111,119,34,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,116,61,116,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,111,114,116,41,123,118,97,114,32,105,61,101,46,115,111,114,116,66,121,40,116,104,105,115,44,116,41,59,116,104,105,115,46,108,101,110,103,116,104,61,48,44,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,101,41,125,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,110,118,111,107,101,68,101,101,112,40,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,59,118,97,114,32,110,61,101,46,99,111,110,116,101,120,116,40,41,44,105,61,116,46,99,111,110,116,101,120,116,40,41,44,114,61,110,46,105,110,100,101,120,79,102,40,101,41,44,115,61,105,46,105,110,100,101,120,79,102,40,116,41,59,114,101,116,117,114,110,32,110,61,61,61,105,63,40,116,104,105,115,91,114,93,61,116,44,116,104,105,115,91,115,93,61,101,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,101,44,110,44,114,44,105,44,115,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,109,111,118,101,100,34,44,116,44,105,44,115,44,110,44,114,41,41,58,40,110,46,109,111,118,101,40,114,44,105,46,105,110,100,101,120,79,102,40,116,41,44,105,41,44,105,46,109,111,118,101,40,105,46,105,110,100,101,120,79,102,40,116,41,44,114,44,110,41,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,119,97,112,112,101,100,34,44,101,44,110,44,114,44,116,44,105,44,115,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,101,41,123,116,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,41,41,125,41,44,116,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,97,46,99,97,108,108,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,101,41,125,125,93,41,44,110,125,40,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,101,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,114,101,116,117,114,110,32,116,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,101,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,44,101,41,58,116,46,95,95,112,114,111,116,111,95,95,61,101,44,116,125,40,65,114,114,97,121,41,41,44,83,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,116,40,110,44,105,44,114,41,123,118,97,114,32,115,61,116,104,105,115,59,120,40,116,104,105,115,44,116,41,44,116,104,105,115,46,95,116,114,101,101,61,110,44,105,32,105,110,115,116,97,110,99,101,111,102,32,116,38,38,40,40,114,61,101,46,99,97,115,116,65,114,114,97,121,40,114,41,41,46,112,117,115,104,40,34,95,116,114,101,101,34,41,44,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,116,44,110,41,123,101,46,105,110,99,108,117,100,101,115,40,114,44,110,41,124,124,40,101,46,105,115,79,98,106,101,99,116,40,116,41,63,115,91,110,93,61,116,32,105,110,115,116,97,110,99,101,111,102,32,80,63,116,46,99,108,111,110,101,40,41,58,34,105,116,114,101,101,34,61,61,61,110,63,100,40,116,41,58,101,46,99,108,111,110,101,68,101,101,112,40,116,41,58,115,91,110,93,61,116,41,125,41,41,125,114,101,116,117,114,110,32,68,40,116,44,91,123,107,101,121,58,34,97,100,100,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,33,101,46,105,115,65,114,114,97,121,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,40,116,104,105,115,46,99,104,105,108,100,114,101,110,61,110,101,119,32,80,40,116,104,105,115,46,95,116,114,101,101,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,104,105,115,41,44,116,104,105,115,46,99,104,105,108,100,114,101,110,46,97,100,100,78,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,97,100,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,80,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,97,100,100,67,104,105,108,100,40,101,41,41,125,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,40,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,124,124,33,48,61,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,104,105,100,100,101,110,40,41,38,38,33,116,104,105,115,46,114,101,109,111,118,101,100,40,41,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,111,40,34,102,111,99,117,115,101,100,34,44,33,49,44,34,98,108,117,114,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,104,101,99,107,101,100,34,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,101,46,103,101,116,80,97,114,101,110,116,40,41,59,116,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,124,124,116,46,104,105,100,101,40,41,125,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,101,119,32,116,40,116,104,105,115,46,95,116,114,101,101,44,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,99,111,108,108,97,112,115,101,100,34,44,33,48,44,34,99,111,108,108,97,112,115,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,109,111,100,101,108,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,114,101,116,117,114,110,32,116,38,38,40,110,61,110,46,99,111,112,121,72,105,101,114,97,114,99,104,121,40,41,41,44,123,116,111,58,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,101,46,105,115,70,117,110,99,116,105,111,110,40,116,46,97,100,100,78,111,100,101,41,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,68,101,115,116,105,110,97,116,105,111,110,32,109,117,115,116,32,98,101,32,97,110,32,73,110,115,112,105,114,101,32,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,114,101,116,117,114,110,32,116,46,97,100,100,78,111,100,101,40,110,46,116,111,79,98,106,101,99,116,40,41,41,125,125,125,125,44,123,107,101,121,58,34,99,111,112,121,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,91,93,44,105,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,115,40,41,59,105,102,40,101,46,101,97,99,104,40,105,44,102,117,110,99,116,105,111,110,40,101,41,123,110,46,112,117,115,104,40,101,46,116,111,79,98,106,101,99,116,40,116,41,41,125,41,44,105,61,110,46,114,101,118,101,114,115,101,40,41,44,33,116,41,123,118,97,114,32,114,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,48,41,59,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,41,46,116,111,65,114,114,97,121,40,41,44,114,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,114,41,44,110,46,112,117,115,104,40,114,41,125,118,97,114,32,115,61,110,91,48,93,44,111,61,115,44,97,61,110,46,108,101,110,103,116,104,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,110,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,105,61,91,93,59,116,43,49,60,97,38,38,40,105,46,112,117,115,104,40,110,91,116,43,49,93,41,44,111,46,99,104,105,108,100,114,101,110,61,105,44,111,61,111,46,99,104,105,108,100,114,101,110,91,48,93,41,125,41,44,102,40,116,104,105,115,46,95,116,114,101,101,44,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,40,33,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,124,124,116,104,105,115,46,95,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,62,49,41,38,38,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,115,101,108,101,99,116,101,100,34,44,33,49,44,34,100,101,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,40,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,124,124,101,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,101,46,99,104,105,108,100,114,101,110,41,38,38,40,101,46,99,111,108,108,97,112,115,101,100,40,41,124,124,101,46,104,105,100,100,101,110,40,41,41,63,40,101,46,115,116,97,116,101,40,34,99,111,108,108,97,112,115,101,100,34,44,33,49,41,44,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,49,41,44,101,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,120,112,97,110,100,101,100,34,44,101,41,44,101,46,95,116,114,101,101,46,105,115,68,121,110,97,109,105,99,38,38,33,48,61,61,61,101,46,99,104,105,108,100,114,101,110,63,101,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,116,41,46,99,97,116,99,104,40,110,41,58,40,101,46,109,97,114,107,68,105,114,116,121,40,41,44,101,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,40,101,41,41,41,58,116,40,101,41,125,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,120,112,97,110,100,40,41,125,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,102,111,99,117,115,101,100,40,41,124,124,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,98,108,117,114,68,101,101,112,40,41,44,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,44,33,48,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,102,111,99,117,115,101,100,34,41,125,125,44,123,107,101,121,58,34,103,101,116,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,63,116,104,105,115,46,99,104,105,108,100,114,101,110,58,110,101,119,32,80,40,116,104,105,115,46,95,116,114,101,101,41,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,125,125,44,123,107,101,121,58,34,103,101,116,80,97,114,101,110,116,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,110,101,119,32,80,40,116,104,105,115,46,95,116,114,101,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,112,117,115,104,40,116,41,125,41,44,101,125,125,44,123,107,101,121,58,34,103,101,116,84,101,120,116,117,97,108,72,105,101,114,97,114,99,104,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,116,41,123,101,46,117,110,115,104,105,102,116,40,116,46,116,101,120,116,41,125,41,44,101,125,125,44,123,107,101,121,58,34,104,97,115,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,33,40,116,61,110,46,105,100,61,61,61,101,46,105,100,41,125,41,44,116,125,125,44,123,107,101,121,58,34,104,97,115,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,38,38,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,62,48,125,125,44,123,107,101,121,58,34,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,125,125,44,123,107,101,121,58,34,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,104,105,115,46,99,104,105,108,100,114,101,110,41,63,66,111,111,108,101,97,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,58,116,104,105,115,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,125,125,44,123,107,101,121,58,34,104,97,115,80,97,114,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,66,111,111,108,101,97,110,40,116,104,105,115,46,105,116,114,101,101,46,112,97,114,101,110,116,41,125,125,44,123,107,101,121,58,34,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,33,49,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,108,101,110,103,116,104,62,48,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,111,40,34,104,105,100,100,101,110,34,44,33,48,44,34,104,105,100,100,101,110,34,44,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,104,105,100,101,40,41,44,101,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,80,97,116,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,114,101,99,117,114,115,101,85,112,40,102,117,110,99,116,105,111,110,40,110,41,123,116,46,112,117,115,104,40,101,46,105,110,100,101,120,79,102,40,110,46,99,111,110,116,101,120,116,40,41,44,110,41,41,125,41,44,116,46,114,101,118,101,114,115,101,40,41,46,106,111,105,110,40,34,46,34,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,125,125,44,123,107,101,121,58,34,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,41,123,118,97,114,32,110,61,40,116,61,101,46,102,105,110,100,76,97,115,116,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,108,111,97,100,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,110,44,105,41,123,105,102,40,33,116,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,105,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,100,111,101,115,32,110,111,116,32,104,97,118,101,32,111,114,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,116,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,48,41,44,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,114,44,115,41,123,105,102,40,33,101,46,105,115,65,114,114,97,121,76,105,107,101,40,114,41,41,114,101,116,117,114,110,32,105,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,116,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,59,118,97,114,32,111,61,118,40,116,46,95,116,114,101,101,44,114,44,116,41,59,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,46,99,104,105,108,100,114,101,110,41,63,116,46,99,104,105,108,100,114,101,110,61,116,46,99,104,105,108,100,114,101,110,46,99,111,110,99,97,116,40,111,41,58,116,46,99,104,105,108,100,114,101,110,61,111,44,101,46,112,97,114,115,101,73,110,116,40,115,41,62,114,46,108,101,110,103,116,104,38,38,40,116,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,112,97,114,115,101,73,110,116,40,115,41,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,116,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,116,46,115,101,108,101,99,116,101,100,40,41,38,38,116,46,99,104,105,108,100,114,101,110,46,115,101,108,101,99,116,40,41,44,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,46,95,116,114,101,101,46,101,110,100,40,41,44,110,40,116,46,99,104,105,108,100,114,101,110,41,44,116,46,95,116,114,101,101,46,101,109,105,116,40,34,99,104,105,108,100,114,101,110,46,108,111,97,100,101,100,34,44,116,41,125,44,115,61,102,117,110,99,116,105,111,110,40,101,41,123,116,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,44,33,49,41,44,116,46,99,104,105,108,100,114,101,110,61,110,101,119,32,80,40,116,46,95,116,114,101,101,41,44,116,46,99,104,105,108,100,114,101,110,46,95,99,111,110,116,101,120,116,61,116,44,116,46,109,97,114,107,68,105,114,116,121,40,41,44,116,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,105,40,101,41,44,116,46,95,116,114,101,101,46,101,109,105,116,40,34,116,114,101,101,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,44,111,61,116,46,95,116,114,101,101,46,99,111,110,115,116,114,117,99,116,111,114,46,105,115,84,114,101,101,78,111,100,101,115,40,116,46,99,104,105,108,100,114,101,110,41,63,116,46,99,104,105,108,100,114,101,110,46,112,97,103,105,110,97,116,105,111,110,40,41,58,110,117,108,108,44,97,61,116,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,40,116,44,114,44,115,44,111,41,59,101,46,105,115,79,98,106,101,99,116,40,97,41,38,38,104,40,97,41,46,116,104,101,110,40,114,41,46,99,97,116,99,104,40,115,41,125,41,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,108,111,97,100,105,110,103,34,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,105,108,100,114,101,110,38,38,33,48,33,61,61,116,104,105,115,46,99,104,105,108,100,114,101,110,63,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,111,97,100,77,111,114,101,40,41,58,119,46,114,101,106,101,99,116,40,110,101,119,32,69,114,114,111,114,40,34,67,104,105,108,100,114,101,110,32,104,97,118,101,32,110,111,116,32,121,101,116,32,98,101,101,110,32,108,111,97,100,101,100,46,34,41,41,125,125,44,123,107,101,121,58,34,109,97,114,107,68,105,114,116,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,124,124,40,116,104,105,115,46,105,116,114,101,101,46,100,105,114,116,121,61,33,48,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,109,97,114,107,68,105,114,116,121,40,41,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,41,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,105,102,40,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,124,124,40,101,61,116,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,41,125,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,116,61,101,46,102,105,110,100,40,116,104,105,115,46,99,104,105,108,100,114,101,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,41,44,116,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,67,104,105,108,100,78,111,100,101,40,41,41,124,124,40,101,61,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,44,101,124,124,40,101,61,116,104,105,115,46,110,101,120,116,86,105,115,105,98,108,101,65,110,99,101,115,116,114,97,108,83,105,98,108,105,110,103,78,111,100,101,40,41,41,44,101,125,125,44,123,107,101,121,58,34,110,101,120,116,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,110,61,101,46,102,105,110,100,73,110,100,101,120,40,116,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,101,46,102,105,110,100,40,101,46,115,108,105,99,101,40,116,44,110,43,49,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,101,46,103,101,116,40,116,104,105,115,44,34,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,34,41,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,118,111,105,100,32,48,59,114,101,116,117,114,110,40,101,61,116,104,105,115,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,40,41,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,33,101,46,99,111,108,108,97,112,115,101,100,40,41,38,38,40,101,61,101,46,108,97,115,116,68,101,101,112,101,115,116,86,105,115,105,98,108,101,67,104,105,108,100,40,41,41,44,33,101,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,40,101,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,41,44,101,125,125,44,123,107,101,121,58,34,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,83,105,98,108,105,110,103,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,63,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,104,105,108,100,114,101,110,58,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,44,110,61,101,46,102,105,110,100,73,110,100,101,120,40,116,44,123,105,100,58,116,104,105,115,46,105,100,125,41,59,114,101,116,117,114,110,32,101,46,102,105,110,100,76,97,115,116,40,101,46,115,108,105,99,101,40,116,44,48,44,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,118,105,115,105,98,108,101,40,41,125,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,85,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,33,49,33,61,61,101,40,116,104,105,115,41,38,38,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,99,117,114,115,101,85,112,40,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,59,105,102,40,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,44,110,61,48,44,105,61,48,59,116,104,105,115,46,99,104,105,108,100,114,101,110,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,105,43,43,44,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,38,38,110,43,43,125,41,44,105,61,61,61,116,63,111,40,34,99,104,101,99,107,101,100,34,44,33,48,44,34,99,104,101,99,107,101,100,34,44,116,104,105,115,41,58,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,41,44,116,104,105,115,46,99,104,101,99,107,101,100,40,41,124,124,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,110,62,48,124,124,116,62,48,38,38,105,62,48,38,38,105,60,116,41,125,114,101,116,117,114,110,32,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,101,33,61,61,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,41,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,59,114,101,116,117,114,110,32,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,116,44,110,41,123,105,102,40,33,101,46,97,108,108,111,119,68,121,110,97,109,105,99,76,111,97,100,40,41,41,114,101,116,117,114,110,32,110,40,110,101,119,32,69,114,114,111,114,40,34,78,111,100,101,32,111,114,32,116,114,101,101,32,100,111,101,115,32,110,111,116,32,115,117,112,112,111,114,116,32,100,121,110,97,109,105,99,32,99,104,105,108,100,114,101,110,46,34,41,41,59,101,46,99,104,105,108,100,114,101,110,61,33,48,44,101,46,99,111,108,108,97,112,115,101,40,41,44,101,46,108,111,97,100,67,104,105,108,100,114,101,110,40,41,46,116,104,101,110,40,116,41,46,99,97,116,99,104,40,110,41,125,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,38,38,97,114,103,117,109,101,110,116,115,91,48,93,44,116,61,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,59,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,114,101,109,111,118,101,40,116,104,105,115,41,44,116,38,38,40,116,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,46,109,97,114,107,68,105,114,116,121,40,41,41,44,40,116,63,116,46,112,97,103,105,110,97,116,105,111,110,40,41,58,116,104,105,115,46,95,116,114,101,101,46,112,97,103,105,110,97,116,105,111,110,40,41,41,46,116,111,116,97,108,45,45,59,118,97,114,32,110,61,116,104,105,115,46,116,111,79,98,106,101,99,116,40,33,49,44,101,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,114,101,109,111,118,101,100,34,44,110,44,116,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,110,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,109,111,118,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,49,44,34,114,101,115,116,111,114,101,100,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,33,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,38,38,116,104,105,115,46,115,101,108,101,99,116,97,98,108,101,40,41,41,123,105,102,40,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,40,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,33,49,44,116,104,105,115,46,95,116,114,101,101,46,100,101,115,101,108,101,99,116,68,101,101,112,40,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,61,116,125,111,40,34,115,101,108,101,99,116,101,100,34,44,33,48,44,34,115,101,108,101,99,116,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,95,116,114,101,101,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,61,116,104,105,115,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,125,114,101,116,117,114,110,32,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,108,108,111,119,40,116,104,105,115,41,59,114,101,116,117,114,110,34,98,111,111,108,101,97,110,34,61,61,116,121,112,101,111,102,32,101,63,101,58,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,97,98,108,101,34,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,115,101,108,101,99,116,101,100,34,41,125,125,44,123,107,101,121,58,34,115,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,91,101,93,61,116,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,104,105,100,100,101,110,34,44,33,49,44,34,115,104,111,119,110,34,44,116,104,105,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,91,101,93,59,114,101,116,117,114,110,32,118,111,105,100,32,48,33,61,61,116,38,38,110,33,61,61,116,38,38,40,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,91,101,93,61,116,44,34,114,101,110,100,101,114,101,100,34,33,61,61,101,38,38,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,115,116,97,116,101,46,99,104,97,110,103,101,100,34,44,116,104,105,115,44,101,44,110,44,116,41,41,44,110,125,125,44,123,107,101,121,58,34,115,116,97,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,105,61,116,104,105,115,44,114,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,101,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,114,46,112,117,115,104,40,105,46,115,116,97,116,101,40,101,44,110,41,41,125,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,114,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,115,119,97,112,40,116,104,105,115,44,101,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,40,34,114,101,109,111,118,101,100,34,44,33,48,44,34,115,111,102,116,114,101,109,111,118,101,100,34,44,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,104,101,99,107,101,100,40,41,63,116,104,105,115,46,117,110,99,104,101,99,107,40,41,58,116,104,105,115,46,99,104,101,99,107,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,67,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,108,108,97,112,115,101,100,40,41,63,116,104,105,115,46,101,120,112,97,110,100,40,41,58,116,104,105,115,46,99,111,108,108,97,112,115,101,40,41,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,69,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,116,104,105,115,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,41,41,44,116,104,105,115,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,116,111,103,103,108,101,83,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,115,101,108,101,99,116,101,100,40,41,63,116,104,105,115,46,100,101,115,101,108,101,99,116,40,41,58,116,104,105,115,46,115,101,108,101,99,116,40,41,125,125,44,123,107,101,121,58,34,116,111,79,98,106,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,48,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,48,93,38,38,97,114,103,117,109,101,110,116,115,91,48,93,44,105,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,62,49,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,38,38,97,114,103,117,109,101,110,116,115,91,49,93,44,114,61,123,125,44,115,61,101,46,112,117,108,108,40,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,41,44,34,95,116,114,101,101,34,44,34,99,104,105,108,100,114,101,110,34,44,34,105,116,114,101,101,34,41,59,101,46,101,97,99,104,40,115,44,102,117,110,99,116,105,111,110,40,101,41,123,114,91,101,93,61,116,91,101,93,125,41,59,118,97,114,32,111,61,114,46,105,116,114,101,101,61,123,125,59,114,101,116,117,114,110,32,111,46,97,61,116,104,105,115,46,105,116,114,101,101,46,97,44,111,46,105,99,111,110,61,116,104,105,115,46,105,116,114,101,101,46,105,99,111,110,44,111,46,108,105,61,116,104,105,115,46,105,116,114,101,101,46,108,105,44,105,38,38,40,111,46,115,116,97,116,101,61,116,104,105,115,46,105,116,114,101,101,46,115,116,97,116,101,41,44,33,110,38,38,116,104,105,115,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,41,38,38,40,114,46,99,104,105,108,100,114,101,110,61,116,104,105,115,46,99,104,105,108,100,114,101,110,46,116,111,65,114,114,97,121,40,41,41,44,114,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,116,101,120,116,125,125,44,123,107,101,121,58,34,116,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,116,101,120,116,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,117,110,99,104,101,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,111,40,34,99,104,101,99,107,101,100,34,44,33,49,44,34,117,110,99,104,101,99,107,101,100,34,44,116,104,105,115,44,33,101,38,38,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,99,104,101,99,107,98,111,120,46,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,41,44,116,104,105,115,46,115,116,97,116,101,40,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,33,49,41,44,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,114,101,102,114,101,115,104,73,110,100,101,116,101,114,109,105,110,97,116,101,83,116,97,116,101,40,41,44,116,104,105,115,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,40,116,104,105,115,46,104,105,100,100,101,110,40,41,124,124,116,104,105,115,46,114,101,109,111,118,101,100,40,41,124,124,116,104,105,115,46,95,116,114,101,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,38,38,33,116,104,105,115,46,114,101,110,100,101,114,101,100,40,41,41,38,38,40,33,116,104,105,115,46,104,97,115,80,97,114,101,110,116,40,41,124,124,33,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,99,111,108,108,97,112,115,101,100,40,41,38,38,116,104,105,115,46,103,101,116,80,97,114,101,110,116,40,41,46,118,105,115,105,98,108,101,40,41,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,116,41,123,120,40,116,104,105,115,44,110,41,59,118,97,114,32,105,61,76,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,41,41,44,114,61,105,59,114,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,44,114,46,95,109,117,116,101,100,61,33,49,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,33,49,44,114,46,98,97,116,99,104,105,110,103,61,48,44,114,46,105,100,61,98,40,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,49,44,114,46,105,115,68,121,110,97,109,105,99,61,33,49,44,114,46,111,112,116,115,61,116,44,114,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,114,46,99,111,110,102,105,103,61,101,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,58,91,93,44,99,104,101,99,107,98,111,120,58,123,97,117,116,111,67,104,101,99,107,67,104,105,108,100,114,101,110,58,33,48,125,44,99,111,110,116,101,120,116,77,101,110,117,58,33,49,44,100,97,116,97,58,33,49,44,101,100,105,116,97,98,108,101,58,33,49,44,101,100,105,116,105,110,103,58,123,97,100,100,58,33,49,44,101,100,105,116,58,33,49,44,114,101,109,111,118,101,58,33,49,125,44,110,111,100,101,115,58,123,114,101,115,101,116,83,116,97,116,101,79,110,82,101,115,116,111,114,101,58,33,48,125,44,112,97,103,105,110,97,116,105,111,110,58,123,108,105,109,105,116,58,45,49,125,44,114,101,110,100,101,114,101,114,58,33,49,44,115,101,97,114,99,104,58,123,109,97,116,99,104,101,114,58,33,49,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,44,115,101,108,101,99,116,105,111,110,58,123,97,108,108,111,119,58,101,46,110,111,111,112,44,97,117,116,111,68,101,115,101,108,101,99,116,58,33,48,44,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,58,33,49,44,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,58,33,49,44,109,111,100,101,58,34,100,101,102,97,117,108,116,34,44,109,117,108,116,105,112,108,101,58,33,49,44,114,101,113,117,105,114,101,58,33,49,125,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,115,111,114,116,58,33,49,125,41,44,34,99,104,101,99,107,98,111,120,34,61,61,61,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,61,33,48,44,114,46,111,110,40,34,110,111,100,101,46,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,124,124,101,46,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,124,124,101,46,99,104,101,99,107,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,117,110,99,104,101,99,107,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,101,108,101,99,116,101,100,40,41,38,38,101,46,100,101,115,101,108,101,99,116,40,33,48,41,125,41,44,114,46,111,110,40,34,110,111,100,101,46,100,101,115,101,108,101,99,116,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,101,46,99,104,101,99,107,101,100,40,41,38,38,101,46,117,110,99,104,101,99,107,40,33,48,41,125,41,41,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,83,101,108,101,99,116,67,104,105,108,100,114,101,110,38,38,40,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,61,33,48,44,114,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,61,33,49,41,44,116,46,101,100,105,116,97,98,108,101,38,38,33,116,46,101,100,105,116,105,110,103,38,38,40,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,61,33,48,44,114,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,61,33,48,41,44,101,46,105,115,70,117,110,99,116,105,111,110,40,116,46,115,101,97,114,99,104,41,38,38,40,114,46,99,111,110,102,105,103,46,115,101,97,114,99,104,61,123,109,97,116,99,104,101,114,58,116,46,115,101,97,114,99,104,44,109,97,116,99,104,80,114,111,99,101,115,115,111,114,58,33,49,125,41,44,114,46,100,101,102,97,117,108,116,83,116,97,116,101,61,123,99,111,108,108,97,112,115,101,100,58,33,48,44,101,100,105,116,97,98,108,101,58,101,46,103,101,116,40,114,44,34,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,34,41,44,101,100,105,116,105,110,103,58,33,49,44,100,114,97,103,103,97,98,108,101,58,33,48,44,34,100,114,111,112,45,116,97,114,103,101,116,34,58,33,48,44,102,111,99,117,115,101,100,58,33,49,44,104,105,100,100,101,110,58,33,49,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,33,49,44,108,111,97,100,105,110,103,58,33,49,44,109,97,116,99,104,101,100,58,33,49,44,114,101,109,111,118,101,100,58,33,49,44,114,101,110,100,101,114,101,100,58,33,49,44,115,101,108,101,99,116,97,98,108,101,58,33,48,44,115,101,108,101,99,116,101,100,58,33,49,125,44,114,46,97,108,108,111,119,115,76,111,97,100,69,118,101,110,116,115,61,101,46,105,115,65,114,114,97,121,40,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,41,38,38,114,46,99,111,110,102,105,103,46,97,108,108,111,119,76,111,97,100,69,118,101,110,116,115,46,108,101,110,103,116,104,62,48,44,114,46,105,115,68,121,110,97,109,105,99,61,101,46,105,115,70,117,110,99,116,105,111,110,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,59,118,97,114,32,115,61,114,46,101,109,105,116,59,114,101,116,117,114,110,32,114,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,116,41,123,105,102,40,33,114,46,105,115,69,118,101,110,116,77,117,116,101,100,40,116,41,41,123,105,102,40,101,46,105,115,70,117,110,99,116,105,111,110,40,101,46,103,101,116,40,97,114,103,117,109,101,110,116,115,44,34,91,49,93,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,34,41,41,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,49,93,59,110,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,49,44,110,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,61,102,117,110,99,116,105,111,110,40,41,123,110,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,61,33,48,125,125,115,46,97,112,112,108,121,40,114,44,97,114,103,117,109,101,110,116,115,41,125,125,44,114,46,109,111,100,101,108,61,110,101,119,32,80,40,114,41,44,114,46,99,111,110,102,105,103,46,100,97,116,97,38,38,114,46,108,111,97,100,40,114,46,99,111,110,102,105,103,46,100,97,116,97,41,44,114,46,105,110,105,116,105,97,108,105,122,101,100,61,33,48,44,105,125,114,101,116,117,114,110,32,65,40,110,44,116,41,44,68,40,110,44,91,123,107,101,121,58,34,97,100,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,97,100,100,78,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,97,100,100,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,59,116,104,105,115,46,98,97,116,99,104,40,41,59,118,97,114,32,105,61,110,101,119,32,80,40,116,104,105,115,41,59,114,101,116,117,114,110,32,101,46,101,97,99,104,40,116,44,102,117,110,99,116,105,111,110,40,101,41,123,105,46,112,117,115,104,40,110,46,97,100,100,78,111,100,101,40,101,41,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,105,125,125,44,123,107,101,121,58,34,97,112,112,108,121,67,104,97,110,103,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,62,48,124,124,116,104,105,115,46,101,109,105,116,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,41,125,125,44,123,107,101,121,58,34,97,118,97,105,108,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,97,118,97,105,108,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,97,116,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,98,97,116,99,104,105,110,103,60,48,38,38,40,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,41,44,116,104,105,115,46,98,97,116,99,104,105,110,103,43,43,125,125,44,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,98,108,117,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,108,117,114,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,98,108,117,114,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,98,111,117,110,100,105,110,103,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,101,46,116,114,97,110,115,102,111,114,109,40,97,114,103,117,109,101,110,116,115,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,101,91,116,46,105,110,100,101,120,80,97,116,104,40,41,46,114,101,112,108,97,99,101,40,47,92,46,47,103,44,34,34,41,93,61,116,125,44,123,125,41,44,110,61,101,46,115,111,114,116,66,121,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,41,44,105,61,67,40,110,41,44,114,61,105,91,48,93,44,115,61,105,46,115,108,105,99,101,40,49,41,59,114,101,116,117,114,110,91,101,46,103,101,116,40,116,44,114,41,44,101,46,103,101,116,40,116,44,115,41,93,125,125,44,123,107,101,121,58,34,99,97,110,65,117,116,111,68,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,97,117,116,111,68,101,115,101,108,101,99,116,38,38,33,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,125,125,44,123,107,101,121,58,34,99,104,101,99,107,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,104,101,99,107,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,108,101,97,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,97,116,99,104,101,100,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,44,116,104,105,115,46,115,104,111,119,68,101,101,112,40,41,46,99,111,108,108,97,112,115,101,68,101,101,112,40,41,46,116,114,101,101,40,41,125,125,44,123,107,101,121,58,34,99,108,111,110,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,108,111,110,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,111,108,108,97,112,115,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,110,99,97,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,111,110,99,97,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,111,112,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,99,111,112,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,99,114,101,97,116,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,110,46,105,115,84,114,101,101,78,111,100,101,40,101,41,63,101,58,102,40,116,104,105,115,44,101,41,125,125,44,123,107,101,121,58,34,100,101,101,112,101,115,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,100,101,101,112,101,115,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,100,101,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,117,108,116,105,112,108,101,38,38,40,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,48,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,118,101,114,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,118,101,114,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,100,105,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,100,105,116,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,100,105,116,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,101,118,101,110,116,68,101,115,101,108,101,99,116,105,111,110,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,101,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,48,61,61,61,45,45,116,104,105,115,46,98,97,116,99,104,105,110,103,38,38,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,120,112,97,110,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,120,112,97,110,100,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,112,97,110,100,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,120,112,97,110,100,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,101,120,116,114,97,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,120,116,114,97,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,102,105,108,116,101,114,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,105,108,116,101,114,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,102,105,108,116,101,114,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,108,97,116,116,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,102,108,97,116,116,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,102,111,99,117,115,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,102,111,114,69,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,101,97,99,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,103,101,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,100,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,104,105,100,100,101,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,104,105,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,104,105,100,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,104,105,100,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,100,101,120,79,102,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,105,110,100,101,120,79,102,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,115,101,114,116,65,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,105,110,115,101,114,116,65,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,105,110,118,111,107,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,110,118,111,107,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,105,110,118,111,107,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,105,115,69,118,101,110,116,77,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,105,115,66,111,111,108,101,97,110,40,116,104,105,115,46,109,117,116,101,100,40,41,41,63,116,104,105,115,46,109,117,116,101,100,40,41,58,101,46,105,110,99,108,117,100,101,115,40,116,104,105,115,46,109,117,116,101,100,40,41,44,116,41,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,110,125,125,44,123,107,101,121,58,34,106,111,105,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,106,111,105,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,125,125,44,123,107,101,121,58,34,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,105,61,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,105,44,114,41,123,118,97,114,32,115,61,102,117,110,99,116,105,111,110,40,116,44,115,41,123,105,102,40,33,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,41,41,114,101,116,117,114,110,32,114,40,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,76,111,97,100,101,114,32,114,101,113,117,105,114,101,115,32,97,110,32,97,114,114,97,121,45,108,105,107,101,32,96,110,111,100,101,115,96,32,112,97,114,97,109,101,116,101,114,46,34,41,41,59,33,110,46,105,110,105,116,105,97,108,105,122,101,100,38,38,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,41,63,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,110,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,116,41,125,41,58,110,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,100,34,44,116,41,59,118,97,114,32,111,61,118,40,110,44,116,41,59,110,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,63,110,46,109,111,100,101,108,61,110,46,109,111,100,101,108,46,99,111,110,99,97,116,40,111,41,58,110,46,109,111,100,101,108,61,111,44,110,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,116,46,108,101,110,103,116,104,44,101,46,112,97,114,115,101,73,110,116,40,115,41,62,116,46,108,101,110,103,116,104,38,38,40,110,46,109,111,100,101,108,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,112,97,114,115,101,73,110,116,40,115,41,41,44,115,124,124,110,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,40,101,46,99,104,105,108,100,114,101,110,46,95,112,97,103,105,110,97,116,105,111,110,46,116,111,116,97,108,61,101,46,99,104,105,108,100,114,101,110,46,108,101,110,103,116,104,41,125,41,44,110,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,114,101,113,117,105,114,101,38,38,33,110,46,115,101,108,101,99,116,101,100,40,41,46,108,101,110,103,116,104,38,38,110,46,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,40,41,59,118,97,114,32,97,61,102,117,110,99,116,105,111,110,40,41,123,110,46,101,109,105,116,40,34,109,111,100,101,108,46,108,111,97,100,101,100,34,44,110,46,109,111,100,101,108,41,44,105,40,110,46,109,111,100,101,108,41,44,110,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,125,59,33,110,46,105,110,105,116,105,97,108,105,122,101,100,38,38,101,46,105,115,65,114,114,97,121,40,116,41,63,115,101,116,84,105,109,101,111,117,116,40,97,41,58,97,40,41,125,59,105,102,40,101,46,105,115,65,114,114,97,121,76,105,107,101,40,116,41,41,115,40,116,41,59,101,108,115,101,32,105,102,40,101,46,105,115,70,117,110,99,116,105,111,110,40,116,41,41,123,118,97,114,32,111,61,116,40,110,117,108,108,44,115,44,114,44,110,46,112,97,103,105,110,97,116,105,111,110,40,41,41,59,111,38,38,40,116,61,111,41,125,101,46,105,115,79,98,106,101,99,116,40,116,41,63,104,40,116,41,46,116,104,101,110,40,115,41,46,99,97,116,99,104,40,114,41,58,101,114,114,111,114,40,110,101,119,32,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,100,97,116,97,32,108,111,97,100,101,114,46,34,41,41,125,41,59,114,101,116,117,114,110,32,105,46,99,97,116,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,110,46,101,109,105,116,40,34,100,97,116,97,46,108,111,97,100,101,114,114,111,114,34,44,101,41,125,41,44,116,104,105,115,46,95,108,111,97,100,101,114,61,123,112,114,111,109,105,115,101,58,105,125,44,105,125,125,44,123,107,101,121,58,34,108,111,97,100,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,108,111,97,100,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,108,111,97,100,77,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,109,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,97,116,99,104,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,109,97,116,99,104,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,105,115,83,116,114,105,110,103,40,116,41,124,124,101,46,105,115,65,114,114,97,121,40,116,41,63,116,104,105,115,46,95,109,117,116,101,100,61,101,46,99,97,115,116,65,114,114,97,121,40,116,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,48,44,116,104,105,115,125,125,44,123,107,101,121,58,34,109,117,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,117,116,101,100,125,125,44,123,107,101,121,58,34,110,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,110,111,100,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,110,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,110,111,100,101,115,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,97,103,105,110,97,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,112,97,103,105,110,97,116,105,111,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,112,111,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,112,117,115,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,112,117,115,104,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,99,117,114,115,101,68,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,99,117,114,115,101,68,111,119,110,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,100,117,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,100,117,99,101,82,105,103,104,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,100,117,99,101,82,105,103,104,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,108,111,97,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,114,101,109,111,118,101,65,108,108,40,41,44,116,104,105,115,46,108,111,97,100,40,116,104,105,115,46,111,112,116,115,46,100,97,116,97,124,124,116,104,105,115,46,99,111,110,102,105,103,46,100,97,116,97,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,65,108,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,109,111,100,101,108,61,110,101,119,32,80,40,116,104,105,115,41,44,116,104,105,115,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,109,111,118,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,115,116,111,114,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,115,116,111,114,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,115,116,111,114,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,114,101,118,101,114,115,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,114,101,118,101,114,115,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,97,114,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,105,61,116,104,105,115,44,114,61,116,104,105,115,46,99,111,110,102,105,103,46,115,101,97,114,99,104,44,115,61,114,46,109,97,116,99,104,101,114,44,111,61,114,46,109,97,116,99,104,80,114,111,99,101,115,115,111,114,59,114,101,116,117,114,110,33,116,124,124,101,46,105,115,83,116,114,105,110,103,40,116,41,38,38,101,46,105,115,69,109,112,116,121,40,116,41,63,119,46,114,101,115,111,108,118,101,40,116,104,105,115,46,99,108,101,97,114,83,101,97,114,99,104,40,41,41,58,40,116,104,105,115,46,98,97,116,99,104,40,41,44,116,104,105,115,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,97,116,101,40,34,104,105,100,100,101,110,34,44,33,48,41,44,101,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,49,41,125,41,44,116,104,105,115,46,101,110,100,40,41,44,115,61,101,46,105,115,70,117,110,99,116,105,111,110,40,115,41,63,115,58,102,117,110,99,116,105,111,110,40,116,44,110,41,123,118,97,114,32,114,61,110,101,119,32,80,40,105,41,59,101,46,105,115,83,116,114,105,110,103,40,116,41,38,38,40,116,61,110,101,119,32,82,101,103,69,120,112,40,116,44,34,105,34,41,41,59,118,97,114,32,115,61,118,111,105,100,32,48,59,115,61,101,46,105,115,82,101,103,69,120,112,40,116,41,63,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,116,101,115,116,40,101,46,116,101,120,116,41,125,58,116,44,105,46,109,111,100,101,108,46,114,101,99,117,114,115,101,68,111,119,110,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,114,101,109,111,118,101,100,40,41,124,124,115,40,101,41,38,38,114,46,112,117,115,104,40,101,41,125,41,44,110,40,114,41,125,44,111,61,101,46,105,115,70,117,110,99,116,105,111,110,40,111,41,63,111,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,104,111,119,40,41,46,115,116,97,116,101,40,34,109,97,116,99,104,101,100,34,44,33,48,41,44,101,46,101,120,112,97,110,100,80,97,114,101,110,116,115,40,41,46,99,111,108,108,97,112,115,101,40,41,44,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,101,46,99,104,105,108,100,114,101,110,46,115,104,111,119,68,101,101,112,40,41,125,41,125,44,110,101,119,32,119,40,102,117,110,99,116,105,111,110,40,114,44,97,41,123,115,40,116,44,102,117,110,99,116,105,111,110,40,116,41,123,110,46,105,115,84,114,101,101,78,111,100,101,115,40,116,41,124,124,40,116,61,105,46,110,111,100,101,115,40,101,46,109,97,112,40,116,44,34,105,100,34,41,41,41,44,105,46,98,97,116,99,104,40,41,44,111,40,116,41,44,105,46,101,110,100,40,41,44,114,40,116,41,125,44,97,41,125,41,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,101,108,101,99,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,97,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,101,108,101,99,116,97,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,66,101,116,119,101,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,98,97,116,99,104,40,41,59,102,111,114,40,118,97,114,32,110,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,110,46,105,100,33,61,61,116,46,105,100,59,41,110,46,115,101,108,101,99,116,40,41,44,110,61,110,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,114,101,116,117,114,110,32,116,104,105,115,46,101,110,100,40,41,44,116,104,105,115,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,101,108,101,99,116,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,101,108,101,99,116,101,100,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,101,108,101,99,116,70,105,114,115,116,65,118,97,105,108,97,98,108,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,109,111,100,101,108,46,102,105,108,116,101,114,66,121,40,34,97,118,97,105,108,97,98,108,101,34,41,46,103,101,116,40,48,41,59,114,101,116,117,114,110,32,101,38,38,101,46,115,101,108,101,99,116,40,41,44,101,125,125,44,123,107,101,121,58,34,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,104,111,119,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,104,111,119,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,104,111,119,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,102,116,82,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,111,102,116,82,101,109,111,118,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,111,109,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,111,114,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,111,114,116,66,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,111,114,116,66,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,112,108,105,99,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,108,105,99,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,116,97,116,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,116,97,116,101,68,101,101,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,116,97,116,101,68,101,101,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,115,119,97,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,115,119,97,112,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,65,114,114,97,121,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,116,111,65,114,114,97,121,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,116,111,83,116,114,105,110,103,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,116,111,83,116,114,105,110,103,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,117,110,109,117,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,114,101,116,117,114,110,32,101,46,105,115,83,116,114,105,110,103,40,116,41,124,124,101,46,105,115,65,114,114,97,121,40,116,41,63,40,116,104,105,115,46,95,109,117,116,101,100,61,101,46,100,105,102,102,101,114,101,110,99,101,40,116,104,105,115,46,95,109,117,116,101,100,44,101,46,99,97,115,116,65,114,114,97,121,40,116,41,41,44,116,104,105,115,46,95,109,117,116,101,100,46,108,101,110,103,116,104,124,124,40,116,104,105,115,46,95,109,117,116,101,100,61,33,49,41,41,58,116,104,105,115,46,95,109,117,116,101,100,61,33,49,44,116,104,105,115,125,125,44,123,107,101,121,58,34,117,110,115,104,105,102,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,117,110,115,104,105,102,116,34,44,97,114,103,117,109,101,110,116,115,41,125,125,44,123,107,101,121,58,34,118,105,115,105,98,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,121,40,116,104,105,115,44,34,118,105,115,105,98,108,101,34,44,97,114,103,117,109,101,110,116,115,41,125,125,93,44,91,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,83,125,125,44,123,107,101,121,58,34,105,115,84,114,101,101,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,32,105,110,115,116,97,110,99,101,111,102,32,80,125,125,93,41,44,110,125,40,110,40,102,117,110,99,116,105,111,110,40,101,44,116,41,123,33,102,117,110,99,116,105,111,110,40,116,41,123,102,117,110,99,116,105,111,110,32,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,99,111,110,102,38,38,105,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,99,111,110,102,41,125,102,117,110,99,116,105,111,110,32,105,40,101,41,123,101,63,40,116,104,105,115,46,95,99,111,110,102,61,101,44,101,46,100,101,108,105,109,105,116,101,114,38,38,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,61,101,46,100,101,108,105,109,105,116,101,114,41,44,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,46,109,97,120,76,105,115,116,101,110,101,114,115,33,61,61,116,63,101,46,109,97,120,76,105,115,116,101,110,101,114,115,58,99,44,101,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,61,101,46,119,105,108,100,99,97,114,100,41,44,101,46,110,101,119,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,101,46,110,101,119,76,105,115,116,101,110,101,114,41,44,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,40,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,44,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,101,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,38,38,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,61,123,125,41,41,58,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,99,125,102,117,110,99,116,105,111,110,32,114,40,101,44,116,41,123,118,97,114,32,110,61,34,40,110,111,100,101,41,32,119,97,114,110,105,110,103,58,32,112,111,115,115,105,98,108,101,32,69,118,101,110,116,69,109,105,116,116,101,114,32,109,101,109,111,114,121,32,108,101,97,107,32,100,101,116,101,99,116,101,100,46,32,34,43,101,43,34,32,108,105,115,116,101,110,101,114,115,32,97,100,100,101,100,46,32,85,115,101,32,101,109,105,116,116,101,114,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,40,41,32,116,111,32,105,110,99,114,101,97,115,101,32,108,105,109,105,116,46,34,59,105,102,40,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,38,38,40,110,43,61,34,32,69,118,101,110,116,32,110,97,109,101,58,32,34,43,116,43,34,46,34,41,44,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,112,114,111,99,101,115,115,38,38,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,41,123,118,97,114,32,105,61,110,101,119,32,69,114,114,111,114,40,110,41,59,105,46,110,97,109,101,61,34,77,97,120,76,105,115,116,101,110,101,114,115,69,120,99,101,101,100,101,100,87,97,114,110,105,110,103,34,44,105,46,101,109,105,116,116,101,114,61,116,104,105,115,44,105,46,99,111,117,110,116,61,101,44,112,114,111,99,101,115,115,46,101,109,105,116,87,97,114,110,105,110,103,40,105,41,125,101,108,115,101,32,99,111,110,115,111,108,101,46,101,114,114,111,114,40,110,41,44,99,111,110,115,111,108,101,46,116,114,97,99,101,38,38,99,111,110,115,111,108,101,46,116,114,97,99,101,40,41,125,102,117,110,99,116,105,111,110,32,115,40,101,41,123,116,104,105,115,46,95,101,118,101,110,116,115,61,123,125,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,33,49,44,116,104,105,115,46,118,101,114,98,111,115,101,77,101,109,111,114,121,76,101,97,107,61,33,49,44,105,46,99,97,108,108,40,116,104,105,115,44,101,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,44,110,44,105,41,123,105,102,40,33,110,41,114,101,116,117,114,110,91,93,59,118,97,114,32,114,44,115,44,97,44,117,44,99,44,108,44,104,44,100,61,91,93,44,102,61,116,46,108,101,110,103,116,104,44,118,61,116,91,105,93,44,121,61,116,91,105,43,49,93,59,105,102,40,105,61,61,61,102,38,38,110,46,95,108,105,115,116,101,110,101,114,115,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,110,46,95,108,105,115,116,101,110,101,114,115,41,114,101,116,117,114,110,32,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,41,44,91,110,93,59,102,111,114,40,114,61,48,44,115,61,110,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,59,114,60,115,59,114,43,43,41,101,38,38,101,46,112,117,115,104,40,110,46,95,108,105,115,116,101,110,101,114,115,91,114,93,41,59,114,101,116,117,114,110,91,110,93,125,105,102,40,34,42,34,61,61,61,118,124,124,34,42,42,34,61,61,61,118,124,124,110,91,118,93,41,123,105,102,40,34,42,34,61,61,61,118,41,123,102,111,114,40,97,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,97,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,97,41,38,38,40,100,61,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,97,93,44,105,43,49,41,41,41,59,114,101,116,117,114,110,32,100,125,105,102,40,34,42,42,34,61,61,61,118,41,123,40,104,61,105,43,49,61,61,61,102,124,124,105,43,50,61,61,61,102,38,38,34,42,34,61,61,61,121,41,38,38,110,46,95,108,105,115,116,101,110,101,114,115,38,38,40,100,61,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,44,102,41,41,41,59,102,111,114,40,97,32,105,110,32,110,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,97,38,38,110,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,97,41,38,38,40,34,42,34,61,61,61,97,124,124,34,42,42,34,61,61,61,97,63,40,110,91,97,93,46,95,108,105,115,116,101,110,101,114,115,38,38,33,104,38,38,40,100,61,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,97,93,44,102,41,41,41,44,100,61,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,97,93,44,105,41,41,41,58,100,61,97,61,61,61,121,63,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,97,93,44,105,43,50,41,41,58,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,97,93,44,105,41,41,41,59,114,101,116,117,114,110,32,100,125,100,61,100,46,99,111,110,99,97,116,40,111,40,101,44,116,44,110,91,118,93,44,105,43,49,41,41,125,105,102,40,40,117,61,110,91,34,42,34,93,41,38,38,111,40,101,44,116,44,117,44,105,43,49,41,44,99,61,110,91,34,42,42,34,93,41,105,102,40,105,60,102,41,123,99,46,95,108,105,115,116,101,110,101,114,115,38,38,111,40,101,44,116,44,99,44,102,41,59,102,111,114,40,97,32,105,110,32,99,41,34,95,108,105,115,116,101,110,101,114,115,34,33,61,61,97,38,38,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,97,41,38,38,40,97,61,61,61,121,63,111,40,101,44,116,44,99,91,97,93,44,105,43,50,41,58,97,61,61,61,118,63,111,40,101,44,116,44,99,91,97,93,44,105,43,49,41,58,40,40,108,61,123,125,41,91,97,93,61,99,91,97,93,44,111,40,101,44,116,44,123,34,42,42,34,58,108,125,44,105,43,49,41,41,41,125,101,108,115,101,32,99,46,95,108,105,115,116,101,110,101,114,115,63,111,40,101,44,116,44,99,44,102,41,58,99,91,34,42,34,93,38,38,99,91,34,42,34,93,46,95,108,105,115,116,101,110,101,114,115,38,38,111,40,101,44,116,44,99,91,34,42,34,93,44,102,41,59,114,101,116,117,114,110,32,100,125,102,117,110,99,116,105,111,110,32,97,40,101,44,110,41,123,102,111,114,40,118,97,114,32,105,61,48,44,115,61,40,101,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,41,46,108,101,110,103,116,104,59,105,43,49,60,115,59,105,43,43,41,105,102,40,34,42,42,34,61,61,61,101,91,105,93,38,38,34,42,42,34,61,61,61,101,91,105,43,49,93,41,114,101,116,117,114,110,59,102,111,114,40,118,97,114,32,111,61,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,97,61,101,46,115,104,105,102,116,40,41,59,97,33,61,61,116,59,41,123,105,102,40,111,91,97,93,124,124,40,111,91,97,93,61,123,125,41,44,111,61,111,91,97,93,44,48,61,61,61,101,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,111,46,95,108,105,115,116,101,110,101,114,115,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,111,46,95,108,105,115,116,101,110,101,114,115,38,38,40,111,46,95,108,105,115,116,101,110,101,114,115,61,91,111,46,95,108,105,115,116,101,110,101,114,115,93,41,44,111,46,95,108,105,115,116,101,110,101,114,115,46,112,117,115,104,40,110,41,44,33,111,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,38,38,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,62,48,38,38,111,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,111,46,95,108,105,115,116,101,110,101,114,115,46,119,97,114,110,101,100,61,33,48,44,114,46,99,97,108,108,40,116,104,105,115,44,111,46,95,108,105,115,116,101,110,101,114,115,46,108,101,110,103,116,104,44,97,41,41,41,58,111,46,95,108,105,115,116,101,110,101,114,115,61,110,44,33,48,59,97,61,101,46,115,104,105,102,116,40,41,125,114,101,116,117,114,110,33,48,125,118,97,114,32,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,63,65,114,114,97,121,46,105,115,65,114,114,97,121,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,34,91,111,98,106,101,99,116,32,65,114,114,97,121,93,34,61,61,61,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,116,111,83,116,114,105,110,103,46,99,97,108,108,40,101,41,125,44,99,61,49,48,59,115,46,69,118,101,110,116,69,109,105,116,116,101,114,50,61,115,44,115,46,112,114,111,116,111,116,121,112,101,46,100,101,108,105,109,105,116,101,114,61,34,46,34,44,115,46,112,114,111,116,111,116,121,112,101,46,115,101,116,77,97,120,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,101,33,61,61,116,38,38,40,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,61,101,44,116,104,105,115,46,95,99,111,110,102,124,124,40,116,104,105,115,46,95,99,111,110,102,61,123,125,41,44,116,104,105,115,46,95,99,111,110,102,46,109,97,120,76,105,115,116,101,110,101,114,115,61,101,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,61,34,34,44,115,46,112,114,111,116,111,116,121,112,101,46,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,49,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,79,110,99,101,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,99,101,40,101,44,116,44,33,48,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,95,111,110,99,101,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,49,44,116,44,110,41,44,116,104,105,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,49,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,77,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,109,97,110,121,40,101,44,116,44,110,44,33,48,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,95,109,97,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,105,41,123,102,117,110,99,116,105,111,110,32,114,40,41,123,114,101,116,117,114,110,32,48,61,61,45,45,116,38,38,115,46,111,102,102,40,101,44,114,41,44,110,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,125,118,97,114,32,115,61,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,109,97,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,114,46,95,111,114,105,103,105,110,61,110,44,116,104,105,115,46,95,111,110,40,101,44,114,44,105,41,44,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,110,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,33,49,59,118,97,114,32,116,44,105,44,114,44,115,44,97,44,117,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,41,123,105,102,40,97,61,116,104,105,115,46,95,97,108,108,46,115,108,105,99,101,40,41,44,117,62,51,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,117,41,44,115,61,48,59,115,60,117,59,115,43,43,41,116,91,115,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,102,111,114,40,114,61,48,44,105,61,97,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,117,41,123,99,97,115,101,32,49,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,91,114,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,97,61,91,93,59,118,97,114,32,99,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,111,46,99,97,108,108,40,116,104,105,115,44,97,44,99,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,40,97,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,41,123,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,117,41,123,99,97,115,101,32,49,58,97,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,97,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,97,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,117,45,49,41,44,115,61,49,59,115,60,117,59,115,43,43,41,116,91,115,45,49,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,97,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,97,38,38,40,97,61,97,46,115,108,105,99,101,40,41,41,125,105,102,40,97,38,38,97,46,108,101,110,103,116,104,41,123,105,102,40,117,62,51,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,117,45,49,41,44,115,61,49,59,115,60,117,59,115,43,43,41,116,91,115,45,49,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,102,111,114,40,114,61,48,44,105,61,97,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,117,41,123,99,97,115,101,32,49,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,91,114,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,125,114,101,116,117,114,110,33,48,125,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,116,104,114,111,119,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,97,114,103,117,109,101,110,116,115,91,49,93,58,110,101,119,32,69,114,114,111,114,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,33,33,116,104,105,115,46,95,97,108,108,125,44,115,46,112,114,111,116,111,116,121,112,101,46,101,109,105,116,65,115,121,110,99,61,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,95,101,118,101,110,116,115,124,124,110,46,99,97,108,108,40,116,104,105,115,41,59,118,97,114,32,101,61,97,114,103,117,109,101,110,116,115,91,48,93,59,105,102,40,34,110,101,119,76,105,115,116,101,110,101,114,34,61,61,61,101,38,38,33,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,33,116,104,105,115,46,95,101,118,101,110,116,115,46,110,101,119,76,105,115,116,101,110,101,114,41,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,91,33,49,93,41,59,118,97,114,32,116,44,105,44,114,44,115,44,97,44,117,61,91,93,44,99,61,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,105,102,40,116,104,105,115,46,95,97,108,108,41,123,105,102,40,99,62,51,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,99,41,44,115,61,49,59,115,60,99,59,115,43,43,41,116,91,115,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,102,111,114,40,114,61,48,44,105,61,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,99,41,123,99,97,115,101,32,49,58,117,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,117,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,117,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,114,93,46,99,97,108,108,40,116,104,105,115,44,101,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,117,46,112,117,115,104,40,116,104,105,115,46,95,97,108,108,91,114,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,97,61,91,93,59,118,97,114,32,108,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,111,46,99,97,108,108,40,116,104,105,115,44,97,44,108,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,32,97,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,59,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,97,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,99,41,123,99,97,115,101,32,49,58,117,46,112,117,115,104,40,97,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,117,46,112,117,115,104,40,97,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,117,46,112,117,115,104,40,97,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,99,45,49,41,44,115,61,49,59,115,60,99,59,115,43,43,41,116,91,115,45,49,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,117,46,112,117,115,104,40,97,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,101,108,115,101,32,105,102,40,97,38,38,97,46,108,101,110,103,116,104,41,123,105,102,40,97,61,97,46,115,108,105,99,101,40,41,44,99,62,51,41,102,111,114,40,116,61,110,101,119,32,65,114,114,97,121,40,99,45,49,41,44,115,61,49,59,115,60,99,59,115,43,43,41,116,91,115,45,49,93,61,97,114,103,117,109,101,110,116,115,91,115,93,59,102,111,114,40,114,61,48,44,105,61,97,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,115,119,105,116,99,104,40,116,104,105,115,46,101,118,101,110,116,61,101,44,99,41,123,99,97,115,101,32,49,58,117,46,112,117,115,104,40,97,91,114,93,46,99,97,108,108,40,116,104,105,115,41,41,59,98,114,101,97,107,59,99,97,115,101,32,50,58,117,46,112,117,115,104,40,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,41,41,59,98,114,101,97,107,59,99,97,115,101,32,51,58,117,46,112,117,115,104,40,97,91,114,93,46,99,97,108,108,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,91,49,93,44,97,114,103,117,109,101,110,116,115,91,50,93,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,117,46,112,117,115,104,40,97,91,114,93,46,97,112,112,108,121,40,116,104,105,115,44,116,41,41,125,125,101,108,115,101,32,105,102,40,33,116,104,105,115,46,95,97,108,108,38,38,34,101,114,114,111,114,34,61,61,61,101,41,114,101,116,117,114,110,32,97,114,103,117,109,101,110,116,115,91,49,93,105,110,115,116,97,110,99,101,111,102,32,69,114,114,111,114,63,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,97,114,103,117,109,101,110,116,115,91,49,93,41,58,80,114,111,109,105,115,101,46,114,101,106,101,99,116,40,34,85,110,99,97,117,103,104,116,44,32,117,110,115,112,101,99,105,102,105,101,100,32,39,101,114,114,111,114,39,32,101,118,101,110,116,46,34,41,59,114,101,116,117,114,110,32,80,114,111,109,105,115,101,46,97,108,108,40,117,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,49,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,76,105,115,116,101,110,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,40,101,44,116,44,33,48,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,49,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,112,114,101,112,101,110,100,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,33,48,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,97,100,100,76,105,115,116,101,110,101,114,61,115,46,112,114,111,116,111,116,121,112,101,46,111,110,44,115,46,112,114,111,116,111,116,121,112,101,46,95,111,110,65,110,121,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,101,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,65,110,121,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,124,124,40,116,104,105,115,46,95,97,108,108,61,91,93,41,44,116,63,116,104,105,115,46,95,97,108,108,46,117,110,115,104,105,102,116,40,101,41,58,116,104,105,115,46,95,97,108,108,46,112,117,115,104,40,101,41,44,116,104,105,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,95,111,110,61,102,117,110,99,116,105,111,110,40,101,44,116,44,105,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,41,114,101,116,117,114,110,32,116,104,105,115,46,95,111,110,65,110,121,40,101,44,116,41,44,116,104,105,115,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,111,110,32,111,110,108,121,32,97,99,99,101,112,116,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,110,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,110,101,119,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,110,101,119,76,105,115,116,101,110,101,114,34,44,101,44,116,41,44,116,104,105,115,46,119,105,108,100,99,97,114,100,63,40,97,46,99,97,108,108,40,116,104,105,115,44,101,44,116,41,44,116,104,105,115,41,58,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,63,40,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,105,63,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,117,110,115,104,105,102,116,40,116,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,112,117,115,104,40,116,41,44,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,38,38,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,62,48,38,38,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,62,116,104,105,115,46,95,109,97,120,76,105,115,116,101,110,101,114,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,119,97,114,110,101,100,61,33,48,44,114,46,99,97,108,108,40,116,104,105,115,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,108,101,110,103,116,104,44,101,41,41,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,116,44,116,104,105,115,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,111,102,102,61,102,117,110,99,116,105,111,110,40,101,44,110,41,123,102,117,110,99,116,105,111,110,32,105,40,101,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,110,61,79,98,106,101,99,116,46,107,101,121,115,40,101,41,59,102,111,114,40,118,97,114,32,114,32,105,110,32,110,41,123,118,97,114,32,115,61,110,91,114,93,44,111,61,101,91,115,93,59,111,32,105,110,115,116,97,110,99,101,111,102,32,70,117,110,99,116,105,111,110,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,111,124,124,110,117,108,108,61,61,61,111,124,124,40,79,98,106,101,99,116,46,107,101,121,115,40,111,41,46,108,101,110,103,116,104,62,48,38,38,105,40,101,91,115,93,41,44,48,61,61,61,79,98,106,101,99,116,46,107,101,121,115,40,111,41,46,108,101,110,103,116,104,38,38,100,101,108,101,116,101,32,101,91,115,93,41,125,125,125,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,110,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,32,111,110,108,121,32,116,97,107,101,115,32,105,110,115,116,97,110,99,101,115,32,111,102,32,70,117,110,99,116,105,111,110,34,41,59,118,97,114,32,114,44,115,61,91,93,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,97,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,115,61,111,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,97,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,125,101,108,115,101,123,105,102,40,33,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,114,101,116,117,114,110,32,116,104,105,115,59,114,61,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,115,46,112,117,115,104,40,123,95,108,105,115,116,101,110,101,114,115,58,114,125,41,125,102,111,114,40,118,97,114,32,99,61,48,59,99,60,115,46,108,101,110,103,116,104,59,99,43,43,41,123,118,97,114,32,108,61,115,91,99,93,59,105,102,40,114,61,108,46,95,108,105,115,116,101,110,101,114,115,44,117,40,114,41,41,123,102,111,114,40,118,97,114,32,104,61,45,49,44,100,61,48,44,102,61,114,46,108,101,110,103,116,104,59,100,60,102,59,100,43,43,41,105,102,40,114,91,100,93,61,61,61,110,124,124,114,91,100,93,46,108,105,115,116,101,110,101,114,38,38,114,91,100,93,46,108,105,115,116,101,110,101,114,61,61,61,110,124,124,114,91,100,93,46,95,111,114,105,103,105,110,38,38,114,91,100,93,46,95,111,114,105,103,105,110,61,61,61,110,41,123,104,61,100,59,98,114,101,97,107,125,105,102,40,104,60,48,41,99,111,110,116,105,110,117,101,59,114,101,116,117,114,110,32,116,104,105,115,46,119,105,108,100,99,97,114,100,63,108,46,95,108,105,115,116,101,110,101,114,115,46,115,112,108,105,99,101,40,104,44,49,41,58,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,46,115,112,108,105,99,101,40,104,44,49,41,44,48,61,61,61,114,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,108,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,110,41,44,116,104,105,115,125,40,114,61,61,61,110,124,124,114,46,108,105,115,116,101,110,101,114,38,38,114,46,108,105,115,116,101,110,101,114,61,61,61,110,124,124,114,46,95,111,114,105,103,105,110,38,38,114,46,95,111,114,105,103,105,110,61,61,61,110,41,38,38,40,116,104,105,115,46,119,105,108,100,99,97,114,100,63,100,101,108,101,116,101,32,108,46,95,108,105,115,116,101,110,101,114,115,58,100,101,108,101,116,101,32,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,34,44,101,44,110,41,41,125,114,101,116,117,114,110,32,105,40,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,41,44,116,104,105,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,111,102,102,65,110,121,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,61,48,44,105,61,48,59,105,102,40,101,38,38,116,104,105,115,46,95,97,108,108,38,38,116,104,105,115,46,95,97,108,108,46,108,101,110,103,116,104,62,48,41,123,102,111,114,40,110,61,48,44,105,61,40,116,61,116,104,105,115,46,95,97,108,108,41,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,105,102,40,101,61,61,61,116,91,110,93,41,114,101,116,117,114,110,32,116,46,115,112,108,105,99,101,40,110,44,49,41,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,38,38,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,101,41,44,116,104,105,115,125,101,108,115,101,123,105,102,40,116,61,116,104,105,115,46,95,97,108,108,44,116,104,105,115,46,95,114,101,109,111,118,101,76,105,115,116,101,110,101,114,41,102,111,114,40,110,61,48,44,105,61,116,46,108,101,110,103,116,104,59,110,60,105,59,110,43,43,41,116,104,105,115,46,101,109,105,116,40,34,114,101,109,111,118,101,76,105,115,116,101,110,101,114,65,110,121,34,44,116,91,110,93,41,59,116,104,105,115,46,95,97,108,108,61,91,93,125,114,101,116,117,114,110,32,116,104,105,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,76,105,115,116,101,110,101,114,61,115,46,112,114,111,116,111,116,121,112,101,46,111,102,102,44,115,46,112,114,111,116,111,116,121,112,101,46,114,101,109,111,118,101,65,108,108,76,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,61,61,61,116,41,114,101,116,117,114,110,33,116,104,105,115,46,95,101,118,101,110,116,115,124,124,110,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,59,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,102,111,114,40,118,97,114,32,105,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,44,114,61,111,46,99,97,108,108,40,116,104,105,115,44,110,117,108,108,44,105,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,115,61,48,59,115,60,114,46,108,101,110,103,116,104,59,115,43,43,41,114,91,115,93,46,95,108,105,115,116,101,110,101,114,115,61,110,117,108,108,59,101,108,115,101,32,116,104,105,115,46,95,101,118,101,110,116,115,38,38,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,110,117,108,108,41,59,114,101,116,117,114,110,32,116,104,105,115,125,44,115,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,61,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,119,105,108,100,99,97,114,100,41,123,118,97,114,32,116,61,91,93,44,105,61,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,63,101,46,115,112,108,105,116,40,116,104,105,115,46,100,101,108,105,109,105,116,101,114,41,58,101,46,115,108,105,99,101,40,41,59,114,101,116,117,114,110,32,111,46,99,97,108,108,40,116,104,105,115,44,116,44,105,44,116,104,105,115,46,108,105,115,116,101,110,101,114,84,114,101,101,44,48,41,44,116,125,114,101,116,117,114,110,32,116,104,105,115,46,95,101,118,101,110,116,115,124,124,110,46,99,97,108,108,40,116,104,105,115,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,93,41,44,117,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,41,124,124,40,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,61,91,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,93,41,44,116,104,105,115,46,95,101,118,101,110,116,115,91,101,93,125,44,115,46,112,114,111,116,111,116,121,112,101,46,101,118,101,110,116,78,97,109,101,115,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,79,98,106,101,99,116,46,107,101,121,115,40,116,104,105,115,46,95,101,118,101,110,116,115,41,125,44,115,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,67,111,117,110,116,61,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,104,105,115,46,108,105,115,116,101,110,101,114,115,40,101,41,46,108,101,110,103,116,104,125,44,115,46,112,114,111,116,111,116,121,112,101,46,108,105,115,116,101,110,101,114,115,65,110,121,61,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,95,97,108,108,63,116,104,105,115,46,95,97,108,108,58,91,93,125,44,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,116,38,38,116,46,97,109,100,63,116,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,125,41,58,101,46,101,120,112,111,114,116,115,61,115,125,40,41,125,41,46,69,118,101,110,116,69,109,105,116,116,101,114,50,41,125,41,59,10,47,42,32,73,110,115,112,105,114,101,32,84,114,101,101,32,68,79,77,10,32,42,32,64,118,101,114,115,105,111,110,32,52,46,48,46,54,10,32,42,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,10,32,42,32,64,99,111,112,121,114,105,103,104,116,32,67,111,112,121,114,105,103,104,116,32,50,48,49,53,32,72,101,108,105,111,110,51,44,32,97,110,100,32,111,116,104,101,114,32,99,111,110,116,114,105,98,117,116,111,114,115,10,32,42,32,64,108,105,99,101,110,115,101,32,76,105,99,101,110,115,101,100,32,117,110,100,101,114,32,77,73,84,10,32,42,32,32,32,32,32,32,32,32,32,32,115,101,101,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,104,101,108,105,111,110,51,47,105,110,115,112,105,114,101,45,116,114,101,101,45,100,111,109,47,98,108,111,98,47,109,97,115,116,101,114,47,76,73,67,69,78,83,69,10,32,42,47,33,102,117,110,99,116,105,111,110,40,101,44,116,41,123,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,38,38,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,116,40,114,101,113,117,105,114,101,40,34,108,111,100,97,115,104,34,41,44,114,101,113,117,105,114,101,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,41,58,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,108,111,100,97,115,104,34,44,34,105,110,115,112,105,114,101,45,116,114,101,101,34,93,44,116,41,58,101,46,73,110,115,112,105,114,101,84,114,101,101,68,79,77,61,116,40,101,46,95,44,101,46,73,110,115,112,105,114,101,84,114,101,101,41,125,40,116,104,105,115,44,102,117,110,99,116,105,111,110,40,108,44,105,41,123,34,117,115,101,32,115,116,114,105,99,116,34,59,105,61,105,38,38,105,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,101,102,97,117,108,116,34,41,63,105,46,100,101,102,97,117,108,116,58,105,59,118,97,114,32,109,61,34,36,78,79,95,79,80,34,44,97,61,34,97,32,114,117,110,116,105,109,101,32,101,114,114,111,114,32,111,99,99,117,114,101,100,33,32,85,115,101,32,73,110,102,101,114,110,111,32,105,110,32,100,101,118,101,108,111,112,109,101,110,116,32,101,110,118,105,114,111,110,109,101,110,116,32,116,111,32,102,105,110,100,32,116,104,101,32,101,114,114,111,114,46,34,44,101,61,33,40,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,119,105,110,100,111,119,124,124,33,119,105,110,100,111,119,46,100,111,99,117,109,101,110,116,41,44,117,61,65,114,114,97,121,46,105,115,65,114,114,97,121,59,102,117,110,99,116,105,111,110,32,112,40,101,41,123,118,97,114,32,116,61,116,121,112,101,111,102,32,101,59,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,61,116,124,124,34,110,117,109,98,101,114,34,61,61,61,116,125,102,117,110,99,116,105,111,110,32,68,40,101,41,123,114,101,116,117,114,110,32,103,40,101,41,124,124,121,40,101,41,125,102,117,110,99,116,105,111,110,32,102,40,101,41,123,114,101,116,117,114,110,32,121,40,101,41,124,124,33,49,61,61,61,101,124,124,33,48,61,61,61,101,124,124,103,40,101,41,125,102,117,110,99,116,105,111,110,32,95,40,101,41,123,114,101,116,117,114,110,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,104,40,101,41,123,114,101,116,117,114,110,34,115,116,114,105,110,103,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,118,40,101,41,123,114,101,116,117,114,110,34,110,117,109,98,101,114,34,61,61,116,121,112,101,111,102,32,101,125,102,117,110,99,116,105,111,110,32,121,40,101,41,123,114,101,116,117,114,110,32,110,117,108,108,61,61,61,101,125,102,117,110,99,116,105,111,110,32,103,40,101,41,123,114,101,116,117,114,110,32,118,111,105,100,32,48,61,61,61,101,125,102,117,110,99,116,105,111,110,32,98,40,101,44,116,41,123,118,97,114,32,110,61,123,125,59,105,102,40,101,41,102,111,114,40,118,97,114,32,111,32,105,110,32,101,41,110,91,111,93,61,101,91,111,93,59,105,102,40,116,41,102,111,114,40,118,97,114,32,114,32,105,110,32,116,41,110,91,114,93,61,116,91,114,93,59,114,101,116,117,114,110,32,110,125,118,97,114,32,107,61,34,36,34,59,102,117,110,99,116,105,111,110,32,67,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,114,101,116,117,114,110,123,99,104,105,108,100,70,108,97,103,115,58,101,44,99,104,105,108,100,114,101,110,58,116,44,99,108,97,115,115,78,97,109,101,58,110,44,100,111,109,58,110,117,108,108,44,102,108,97,103,115,58,111,44,107,101,121,58,118,111,105,100,32,48,61,61,61,114,63,110,117,108,108,58,114,44,112,97,114,101,110,116,86,78,111,100,101,58,110,117,108,108,44,112,114,111,112,115,58,118,111,105,100,32,48,61,61,61,105,63,110,117,108,108,58,105,44,114,101,102,58,118,111,105,100,32,48,61,61,61,97,63,110,117,108,108,58,97,44,116,121,112,101,58,115,125,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,41,123,118,97,114,32,108,61,118,111,105,100,32,48,61,61,61,114,63,49,58,114,44,100,61,67,40,108,44,111,44,110,44,101,44,97,44,105,44,115,44,116,41,59,114,101,116,117,114,110,32,48,61,61,61,108,38,38,83,40,100,44,100,46,99,104,105,108,100,114,101,110,41,44,100,125,102,117,110,99,116,105,111,110,32,100,40,101,44,116,44,110,44,111,44,114,41,123,48,60,40,50,38,101,41,38,38,40,101,61,116,46,112,114,111,116,111,116,121,112,101,38,38,95,40,116,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,41,63,52,58,56,41,59,118,97,114,32,105,61,116,46,100,101,102,97,117,108,116,80,114,111,112,115,59,105,102,40,33,68,40,105,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,110,124,124,40,110,61,123,125,41,44,105,41,103,40,110,91,97,93,41,38,38,40,110,91,97,93,61,105,91,97,93,41,59,105,102,40,48,60,40,56,38,101,41,41,123,118,97,114,32,115,61,116,46,100,101,102,97,117,108,116,72,111,111,107,115,59,105,102,40,33,68,40,115,41,41,105,102,40,114,41,102,111,114,40,118,97,114,32,108,32,105,110,32,115,41,103,40,114,91,108,93,41,38,38,40,114,91,108,93,61,115,91,108,93,41,59,101,108,115,101,32,114,61,115,125,118,97,114,32,100,61,67,40,49,44,110,117,108,108,44,110,117,108,108,44,101,44,111,44,110,44,114,44,116,41,44,99,61,80,46,99,114,101,97,116,101,86,78,111,100,101,59,114,101,116,117,114,110,32,95,40,99,41,38,38,99,40,100,41,44,100,125,102,117,110,99,116,105,111,110,32,36,40,101,44,116,41,123,114,101,116,117,114,110,32,67,40,49,44,68,40,101,41,63,34,34,58,101,44,110,117,108,108,44,49,54,44,116,44,110,117,108,108,44,110,117,108,108,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,99,40,101,41,123,118,97,114,32,116,61,101,46,112,114,111,112,115,59,105,102,40,116,41,123,118,97,114,32,110,61,101,46,102,108,97,103,115,59,52,56,49,38,110,38,38,40,118,111,105,100,32,48,33,61,61,116,46,99,104,105,108,100,114,101,110,38,38,68,40,101,46,99,104,105,108,100,114,101,110,41,38,38,83,40,101,44,116,46,99,104,105,108,100,114,101,110,41,44,118,111,105,100,32,48,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,116,46,99,108,97,115,115,78,97,109,101,124,124,110,117,108,108,44,116,46,99,108,97,115,115,78,97,109,101,61,118,111,105,100,32,48,41,41,44,118,111,105,100,32,48,33,61,61,116,46,107,101,121,38,38,40,101,46,107,101,121,61,116,46,107,101,121,44,116,46,107,101,121,61,118,111,105,100,32,48,41,44,118,111,105,100,32,48,33,61,61,116,46,114,101,102,38,38,40,101,46,114,101,102,61,56,38,110,63,98,40,101,46,114,101,102,44,116,46,114,101,102,41,58,116,46,114,101,102,44,116,46,114,101,102,61,118,111,105,100,32,48,41,125,114,101,116,117,114,110,32,101,125,102,117,110,99,116,105,111,110,32,119,40,101,41,123,118,97,114,32,116,44,110,61,101,46,102,108,97,103,115,59,105,102,40,49,52,38,110,41,123,118,97,114,32,111,44,114,61,101,46,112,114,111,112,115,59,105,102,40,33,121,40,114,41,41,102,111,114,40,118,97,114,32,105,32,105,110,32,111,61,123,125,44,114,41,111,91,105,93,61,114,91,105,93,59,116,61,100,40,110,44,101,46,116,121,112,101,44,111,44,101,46,107,101,121,44,101,46,114,101,102,41,125,101,108,115,101,32,52,56,49,38,110,63,116,61,115,40,110,44,101,46,116,121,112,101,44,101,46,99,108,97,115,115,78,97,109,101,44,101,46,99,104,105,108,100,114,101,110,44,101,46,99,104,105,108,100,70,108,97,103,115,44,101,46,112,114,111,112,115,44,101,46,107,101,121,44,101,46,114,101,102,41,58,49,54,38,110,63,116,61,36,40,101,46,99,104,105,108,100,114,101,110,44,101,46,107,101,121,41,58,49,48,50,52,38,110,38,38,40,116,61,101,41,59,114,101,116,117,114,110,32,116,125,102,117,110,99,116,105,111,110,32,120,40,41,123,114,101,116,117,114,110,32,36,40,34,34,44,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,78,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,101,46,108,101,110,103,116,104,59,110,60,114,59,110,43,43,41,123,118,97,114,32,105,61,101,91,110,93,59,105,102,40,33,102,40,105,41,41,123,118,97,114,32,97,61,111,43,107,43,110,59,105,102,40,117,40,105,41,41,78,40,105,44,116,44,48,44,97,41,59,101,108,115,101,123,105,102,40,112,40,105,41,41,105,61,36,40,105,44,97,41,59,101,108,115,101,123,118,97,114,32,115,61,105,46,107,101,121,44,108,61,104,40,115,41,38,38,115,91,48,93,61,61,61,107,59,121,40,105,46,100,111,109,41,38,38,33,108,124,124,40,105,61,119,40,105,41,41,44,121,40,115,41,124,124,108,63,105,46,107,101,121,61,97,58,105,46,107,101,121,61,111,43,115,125,116,46,112,117,115,104,40,105,41,125,125,125,125,102,117,110,99,116,105,111,110,32,83,40,101,44,116,41,123,118,97,114,32,110,44,111,61,49,59,105,102,40,102,40,116,41,41,110,61,116,59,101,108,115,101,32,105,102,40,104,40,116,41,41,111,61,50,44,110,61,36,40,116,41,59,101,108,115,101,32,105,102,40,118,40,116,41,41,111,61,50,44,110,61,36,40,116,43,34,34,41,59,101,108,115,101,32,105,102,40,117,40,116,41,41,123,118,97,114,32,114,61,116,46,108,101,110,103,116,104,59,105,102,40,48,61,61,61,114,41,110,61,110,117,108,108,44,111,61,49,59,101,108,115,101,123,40,79,98,106,101,99,116,46,105,115,70,114,111,122,101,110,40,116,41,124,124,33,48,61,61,61,116,46,36,41,38,38,40,116,61,116,46,115,108,105,99,101,40,41,41,44,111,61,56,59,102,111,114,40,118,97,114,32,105,61,48,59,105,60,114,59,105,43,43,41,123,118,97,114,32,97,61,116,91,105,93,59,105,102,40,102,40,97,41,124,124,117,40,97,41,41,123,78,40,116,44,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,105,44,34,34,41,59,98,114,101,97,107,125,105,102,40,112,40,97,41,41,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,41,46,112,117,115,104,40,36,40,97,44,107,43,105,41,41,59,101,108,115,101,123,118,97,114,32,115,61,97,46,107,101,121,44,108,61,121,40,97,46,100,111,109,41,44,100,61,121,40,115,41,44,99,61,33,100,38,38,115,91,48,93,61,61,61,107,59,33,108,124,124,100,124,124,99,63,40,110,61,110,124,124,116,46,115,108,105,99,101,40,48,44,105,41,44,108,38,38,33,99,124,124,40,97,61,119,40,97,41,41,44,40,100,124,124,99,41,38,38,40,97,46,107,101,121,61,107,43,105,41,44,110,46,112,117,115,104,40,97,41,41,58,110,38,38,110,46,112,117,115,104,40,97,41,125,125,40,110,61,110,124,124,116,41,46,36,61,33,48,125,125,101,108,115,101,32,121,40,40,110,61,116,41,46,100,111,109,41,124,124,40,110,61,119,40,116,41,41,44,111,61,50,59,114,101,116,117,114,110,32,101,46,99,104,105,108,100,114,101,110,61,110,44,101,46,99,104,105,108,100,70,108,97,103,115,61,111,44,101,125,118,97,114,32,80,61,123,97,102,116,101,114,82,101,110,100,101,114,58,110,117,108,108,44,98,101,102,111,114,101,82,101,110,100,101,114,58,110,117,108,108,44,99,114,101,97,116,101,86,78,111,100,101,58,110,117,108,108,44,114,101,110,100,101,114,67,111,109,112,108,101,116,101,58,110,117,108,108,125,44,116,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,57,47,120,108,105,110,107,34,44,110,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,88,77,76,47,49,57,57,56,47,110,97,109,101,115,112,97,99,101,34,44,79,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,50,48,48,48,47,115,118,103,34,44,84,61,123,34,120,108,105,110,107,58,97,99,116,117,97,116,101,34,58,116,44,34,120,108,105,110,107,58,97,114,99,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,104,114,101,102,34,58,116,44,34,120,108,105,110,107,58,114,111,108,101,34,58,116,44,34,120,108,105,110,107,58,115,104,111,119,34,58,116,44,34,120,108,105,110,107,58,116,105,116,108,101,34,58,116,44,34,120,108,105,110,107,58,116,121,112,101,34,58,116,44,34,120,109,108,58,98,97,115,101,34,58,110,44,34,120,109,108,58,108,97,110,103,34,58,110,44,34,120,109,108,58,115,112,97,99,101,34,58,110,125,44,76,61,123,125,44,85,61,91,93,59,102,117,110,99,116,105,111,110,32,77,40,101,44,116,41,123,101,46,97,112,112,101,110,100,67,104,105,108,100,40,116,41,125,102,117,110,99,116,105,111,110,32,69,40,101,44,116,44,110,41,123,68,40,110,41,63,77,40,101,44,116,41,58,101,46,105,110,115,101,114,116,66,101,102,111,114,101,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,70,40,101,44,116,44,110,41,123,101,46,114,101,112,108,97,99,101,67,104,105,108,100,40,116,44,110,41,125,102,117,110,99,116,105,111,110,32,73,40,101,41,123,102,111,114,40,118,97,114,32,116,59,118,111,105,100,32,48,33,61,61,40,116,61,101,46,115,104,105,102,116,40,41,41,59,41,116,40,41,125,118,97,114,32,65,61,123,125,44,86,61,123,125,59,102,117,110,99,116,105,111,110,32,82,40,101,44,116,44,110,41,123,118,97,114,32,114,44,111,44,105,61,65,91,101,93,44,97,61,110,46,36,69,86,59,116,63,40,105,124,124,40,86,91,101,93,61,40,114,61,101,44,111,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,116,121,112,101,44,110,61,34,99,108,105,99,107,34,61,61,61,116,124,124,34,100,98,108,99,108,105,99,107,34,61,61,61,116,59,105,102,40,110,38,38,48,33,61,61,101,46,98,117,116,116,111,110,41,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,49,59,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,61,66,59,118,97,114,32,111,61,123,100,111,109,58,100,111,99,117,109,101,110,116,125,59,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,99,117,114,114,101,110,116,84,97,114,103,101,116,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,44,103,101,116,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,100,111,109,125,125,41,44,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,59,102,111,114,40,59,33,121,40,105,41,59,41,123,105,102,40,110,38,38,105,46,100,105,115,97,98,108,101,100,41,114,101,116,117,114,110,59,118,97,114,32,97,61,105,46,36,69,86,59,105,102,40,97,41,123,118,97,114,32,115,61,97,91,111,93,59,105,102,40,115,38,38,40,114,46,100,111,109,61,105,44,115,46,101,118,101,110,116,63,115,46,101,118,101,110,116,40,115,46,100,97,116,97,44,101,41,58,115,40,101,41,44,101,46,99,97,110,99,101,108,66,117,98,98,108,101,41,41,114,101,116,117,114,110,125,105,61,105,46,112,97,114,101,110,116,78,111,100,101,125,125,40,101,44,101,46,116,97,114,103,101,116,44,110,44,114,44,111,41,125,44,100,111,99,117,109,101,110,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,114,41,44,111,41,44,111,41,44,65,91,101,93,61,48,41,44,97,124,124,40,97,61,110,46,36,69,86,61,123,125,41,44,97,91,101,93,124,124,65,91,101,93,43,43,44,97,91,101,93,61,116,41,58,97,38,38,97,91,101,93,38,38,40,65,91,101,93,45,45,44,49,61,61,61,105,38,38,40,100,111,99,117,109,101,110,116,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,106,40,101,41,44,86,91,101,93,41,44,86,91,101,93,61,110,117,108,108,41,44,97,91,101,93,61,116,41,125,102,117,110,99,116,105,111,110,32,106,40,101,41,123,114,101,116,117,114,110,32,101,46,115,117,98,115,116,114,40,50,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,125,102,117,110,99,116,105,111,110,32,66,40,41,123,116,104,105,115,46,99,97,110,99,101,108,66,117,98,98,108,101,61,33,48,44,116,104,105,115,46,105,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,83,116,111,112,112,101,100,124,124,116,104,105,115,46,115,116,111,112,73,109,109,101,100,105,97,116,101,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,87,40,101,44,116,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,34,41,59,114,101,116,117,114,110,32,110,46,105,110,110,101,114,72,84,77,76,61,116,44,110,46,105,110,110,101,114,72,84,77,76,61,61,61,101,46,105,110,110,101,114,72,84,77,76,125,102,117,110,99,116,105,111,110,32,72,40,101,44,116,44,110,41,123,105,102,40,101,91,116,93,41,123,118,97,114,32,111,61,101,91,116,93,59,111,46,101,118,101,110,116,63,111,46,101,118,101,110,116,40,111,46,100,97,116,97,44,110,41,58,111,40,110,41,125,101,108,115,101,123,118,97,114,32,114,61,116,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,101,91,114,93,38,38,101,91,114,93,40,110,41,125,125,102,117,110,99,116,105,111,110,32,111,40,115,44,108,41,123,118,97,114,32,101,61,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,36,86,59,105,102,40,116,41,123,118,97,114,32,110,61,116,46,112,114,111,112,115,124,124,76,44,111,61,116,46,100,111,109,59,105,102,40,104,40,115,41,41,72,40,110,44,115,44,101,41,59,101,108,115,101,32,102,111,114,40,118,97,114,32,114,61,48,59,114,60,115,46,108,101,110,103,116,104,59,114,43,43,41,72,40,110,44,115,91,114,93,44,101,41,59,105,102,40,95,40,108,41,41,123,118,97,114,32,105,61,116,104,105,115,46,36,86,44,97,61,105,46,112,114,111,112,115,124,124,76,59,108,40,97,44,111,44,33,49,44,105,41,125,125,125,59,114,101,116,117,114,110,32,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,34,119,114,97,112,112,101,100,34,44,123,99,111,110,102,105,103,117,114,97,98,108,101,58,33,49,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,118,97,108,117,101,58,33,48,44,119,114,105,116,97,98,108,101,58,33,49,125,41,44,101,125,102,117,110,99,116,105,111,110,32,113,40,101,41,123,114,101,116,117,114,110,34,99,104,101,99,107,98,111,120,34,61,61,61,101,124,124,34,114,97,100,105,111,34,61,61,61,101,125,118,97,114,32,75,61,111,40,34,111,110,73,110,112,117,116,34,44,122,41,44,88,61,111,40,91,34,111,110,67,108,105,99,107,34,44,34,111,110,67,104,97,110,103,101,34,93,44,122,41,59,102,117,110,99,116,105,111,110,32,81,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,125,102,117,110,99,116,105,111,110,32,122,40,101,44,116,41,123,118,97,114,32,110,61,101,46,116,121,112,101,44,111,61,101,46,118,97,108,117,101,44,114,61,101,46,99,104,101,99,107,101,100,44,105,61,101,46,109,117,108,116,105,112,108,101,44,97,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,44,115,61,33,68,40,111,41,59,110,38,38,110,33,61,61,116,46,116,121,112,101,38,38,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,110,41,44,68,40,105,41,124,124,105,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,105,41,44,68,40,97,41,124,124,115,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,97,43,34,34,41,44,113,40,110,41,63,40,115,38,38,40,116,46,118,97,108,117,101,61,111,41,44,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,41,58,115,38,38,116,46,118,97,108,117,101,33,61,61,111,63,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,58,68,40,114,41,124,124,40,116,46,99,104,101,99,107,101,100,61,114,41,125,102,117,110,99,116,105,111,110,32,71,40,101,44,116,41,123,105,102,40,34,111,112,116,103,114,111,117,112,34,61,61,61,101,46,116,121,112,101,41,123,118,97,114,32,110,61,101,46,99,104,105,108,100,114,101,110,44,111,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,111,41,102,111,114,40,118,97,114,32,114,61,48,44,105,61,110,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,89,40,110,91,114,93,44,116,41,59,101,108,115,101,32,50,61,61,61,111,38,38,89,40,110,44,116,41,125,101,108,115,101,32,89,40,101,44,116,41,125,102,117,110,99,116,105,111,110,32,89,40,101,44,116,41,123,118,97,114,32,110,61,101,46,112,114,111,112,115,124,124,76,44,111,61,101,46,100,111,109,59,111,46,118,97,108,117,101,61,110,46,118,97,108,117,101,44,117,40,116,41,38,38,45,49,33,61,61,116,46,105,110,100,101,120,79,102,40,110,46,118,97,108,117,101,41,124,124,110,46,118,97,108,117,101,61,61,61,116,63,111,46,115,101,108,101,99,116,101,100,61,33,48,58,68,40,116,41,38,38,68,40,110,46,115,101,108,101,99,116,101,100,41,124,124,40,111,46,115,101,108,101,99,116,101,100,61,110,46,115,101,108,101,99,116,101,100,124,124,33,49,41,125,81,46,119,114,97,112,112,101,100,61,33,48,59,118,97,114,32,74,61,111,40,34,111,110,67,104,97,110,103,101,34,44,90,41,59,102,117,110,99,116,105,111,110,32,90,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,66,111,111,108,101,97,110,40,101,46,109,117,108,116,105,112,108,101,41,59,68,40,101,46,109,117,108,116,105,112,108,101,41,124,124,114,61,61,61,116,46,109,117,108,116,105,112,108,101,124,124,40,116,46,109,117,108,116,105,112,108,101,61,114,41,59,118,97,114,32,105,61,111,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,105,41,41,123,118,97,114,32,97,61,111,46,99,104,105,108,100,114,101,110,44,115,61,101,46,118,97,108,117,101,59,105,102,40,110,38,38,68,40,115,41,38,38,40,115,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,41,44,49,50,38,105,41,102,111,114,40,118,97,114,32,108,61,48,44,100,61,97,46,108,101,110,103,116,104,59,108,60,100,59,108,43,43,41,71,40,97,91,108,93,44,115,41,59,101,108,115,101,32,50,61,61,61,105,38,38,71,40,97,44,115,41,125,125,118,97,114,32,101,101,61,111,40,34,111,110,73,110,112,117,116,34,44,110,101,41,44,116,101,61,111,40,34,111,110,67,104,97,110,103,101,34,41,59,102,117,110,99,116,105,111,110,32,110,101,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,118,97,108,117,101,44,114,61,116,46,118,97,108,117,101,59,105,102,40,68,40,111,41,41,123,105,102,40,110,41,123,118,97,114,32,105,61,101,46,100,101,102,97,117,108,116,86,97,108,117,101,59,68,40,105,41,124,124,105,61,61,61,114,124,124,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,105,44,116,46,118,97,108,117,101,61,105,41,125,125,101,108,115,101,32,114,33,61,61,111,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,111,44,116,46,118,97,108,117,101,61,111,41,125,102,117,110,99,116,105,111,110,32,111,101,40,101,44,116,44,110,44,111,44,114,44,105,41,123,54,52,38,101,63,122,40,111,44,110,41,58,50,53,54,38,101,63,90,40,111,44,110,44,114,44,116,41,58,49,50,56,38,101,38,38,110,101,40,111,44,110,44,114,41,44,105,38,38,40,110,46,36,86,61,116,41,125,102,117,110,99,116,105,111,110,32,114,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,54,52,38,101,63,40,105,61,116,44,113,40,110,46,116,121,112,101,41,63,40,105,46,111,110,99,104,97,110,103,101,61,88,44,105,46,111,110,99,108,105,99,107,61,81,41,58,105,46,111,110,105,110,112,117,116,61,75,41,58,50,53,54,38,101,63,116,46,111,110,99,104,97,110,103,101,61,74,58,49,50,56,38,101,38,38,40,114,61,110,44,40,111,61,116,41,46,111,110,105,110,112,117,116,61,101,101,44,114,46,111,110,67,104,97,110,103,101,38,38,40,111,46,111,110,99,104,97,110,103,101,61,116,101,41,41,125,102,117,110,99,116,105,111,110,32,105,101,40,101,41,123,114,101,116,117,114,110,32,101,46,116,121,112,101,38,38,113,40,101,46,116,121,112,101,41,63,33,68,40,101,46,99,104,101,99,107,101,100,41,58,33,68,40,101,46,118,97,108,117,101,41,125,102,117,110,99,116,105,111,110,32,97,101,40,101,44,116,41,123,118,97,114,32,110,44,111,59,115,101,40,101,41,44,116,38,38,101,46,100,111,109,38,38,40,110,61,116,44,111,61,101,46,100,111,109,44,110,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,44,101,46,100,111,109,61,110,117,108,108,41,125,102,117,110,99,116,105,111,110,32,115,101,40,101,41,123,118,97,114,32,116,61,101,46,102,108,97,103,115,59,105,102,40,52,56,49,38,116,41,123,118,97,114,32,110,61,101,46,114,101,102,44,111,61,101,46,112,114,111,112,115,59,95,40,110,41,38,38,110,40,110,117,108,108,41,59,118,97,114,32,114,61,101,46,99,104,105,108,100,114,101,110,44,105,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,49,50,38,105,63,108,101,40,114,41,58,50,61,61,61,105,38,38,115,101,40,114,41,44,33,121,40,111,41,41,102,111,114,40,118,97,114,32,97,32,105,110,32,111,41,115,119,105,116,99,104,40,97,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,97,44,110,117,108,108,44,101,46,100,111,109,41,125,125,101,108,115,101,123,118,97,114,32,115,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,115,41,105,102,40,49,52,38,116,41,123,118,97,114,32,108,61,101,46,114,101,102,59,52,38,116,63,40,95,40,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,115,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,41,44,95,40,108,41,38,38,108,40,110,117,108,108,41,44,115,46,36,85,78,61,33,48,44,115,46,36,76,73,38,38,115,101,40,115,46,36,76,73,41,41,58,40,33,68,40,108,41,38,38,95,40,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,41,38,38,108,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,110,109,111,117,110,116,40,101,46,100,111,109,44,101,46,112,114,111,112,115,124,124,76,41,44,115,101,40,115,41,41,125,101,108,115,101,32,49,48,50,52,38,116,38,38,97,101,40,115,44,101,46,116,121,112,101,41,125,125,102,117,110,99,116,105,111,110,32,108,101,40,101,41,123,102,111,114,40,118,97,114,32,116,61,48,44,110,61,101,46,108,101,110,103,116,104,59,116,60,110,59,116,43,43,41,115,101,40,101,91,116,93,41,125,102,117,110,99,116,105,111,110,32,100,101,40,101,44,116,41,123,108,101,40,116,41,44,101,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,125,102,117,110,99,116,105,111,110,32,99,101,40,101,44,116,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,97,110,105,109,97,116,105,111,110,73,116,101,114,97,116,105,111,110,67,111,117,110,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,79,117,116,115,101,116,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,83,108,105,99,101,34,58,99,97,115,101,34,98,111,114,100,101,114,73,109,97,103,101,87,105,100,116,104,34,58,99,97,115,101,34,98,111,120,70,108,101,120,34,58,99,97,115,101,34,98,111,120,70,108,101,120,71,114,111,117,112,34,58,99,97,115,101,34,98,111,120,79,114,100,105,110,97,108,71,114,111,117,112,34,58,99,97,115,101,34,99,111,108,117,109,110,67,111,117,110,116,34,58,99,97,115,101,34,102,105,108,108,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,108,101,120,34,58,99,97,115,101,34,102,108,101,120,71,114,111,119,34,58,99,97,115,101,34,102,108,101,120,78,101,103,97,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,79,114,100,101,114,34,58,99,97,115,101,34,102,108,101,120,80,111,115,105,116,105,118,101,34,58,99,97,115,101,34,102,108,101,120,83,104,114,105,110,107,34,58,99,97,115,101,34,102,108,111,111,100,79,112,97,99,105,116,121,34,58,99,97,115,101,34,102,111,110,116,87,101,105,103,104,116,34,58,99,97,115,101,34,103,114,105,100,67,111,108,117,109,110,34,58,99,97,115,101,34,103,114,105,100,82,111,119,34,58,99,97,115,101,34,108,105,110,101,67,108,97,109,112,34,58,99,97,115,101,34,108,105,110,101,72,101,105,103,104,116,34,58,99,97,115,101,34,111,112,97,99,105,116,121,34,58,99,97,115,101,34,111,114,100,101,114,34,58,99,97,115,101,34,111,114,112,104,97,110,115,34,58,99,97,115,101,34,115,116,111,112,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,97,114,114,97,121,34,58,99,97,115,101,34,115,116,114,111,107,101,68,97,115,104,111,102,102,115,101,116,34,58,99,97,115,101,34,115,116,114,111,107,101,77,105,116,101,114,108,105,109,105,116,34,58,99,97,115,101,34,115,116,114,111,107,101,79,112,97,99,105,116,121,34,58,99,97,115,101,34,115,116,114,111,107,101,87,105,100,116,104,34,58,99,97,115,101,34,116,97,98,83,105,122,101,34,58,99,97,115,101,34,119,105,100,111,119,115,34,58,99,97,115,101,34,122,73,110,100,101,120,34,58,99,97,115,101,34,122,111,111,109,34,58,114,101,116,117,114,110,32,116,59,100,101,102,97,117,108,116,58,114,101,116,117,114,110,32,116,43,34,112,120,34,125,125,102,117,110,99,116,105,111,110,32,117,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,34,111,110,67,108,105,99,107,34,58,99,97,115,101,34,111,110,68,98,108,67,108,105,99,107,34,58,99,97,115,101,34,111,110,70,111,99,117,115,73,110,34,58,99,97,115,101,34,111,110,70,111,99,117,115,79,117,116,34,58,99,97,115,101,34,111,110,75,101,121,68,111,119,110,34,58,99,97,115,101,34,111,110,75,101,121,80,114,101,115,115,34,58,99,97,115,101,34,111,110,75,101,121,85,112,34,58,99,97,115,101,34,111,110,77,111,117,115,101,68,111,119,110,34,58,99,97,115,101,34,111,110,77,111,117,115,101,77,111,118,101,34,58,99,97,115,101,34,111,110,77,111,117,115,101,85,112,34,58,99,97,115,101,34,111,110,83,117,98,109,105,116,34,58,99,97,115,101,34,111,110,84,111,117,99,104,69,110,100,34,58,99,97,115,101,34,111,110,84,111,117,99,104,77,111,118,101,34,58,99,97,115,101,34,111,110,84,111,117,99,104,83,116,97,114,116,34,58,82,40,101,44,110,44,111,41,59,98,114,101,97,107,59,99,97,115,101,34,99,104,105,108,100,114,101,110,34,58,99,97,115,101,34,99,104,105,108,100,114,101,110,84,121,112,101,34,58,99,97,115,101,34,99,108,97,115,115,78,97,109,101,34,58,99,97,115,101,34,100,101,102,97,117,108,116,86,97,108,117,101,34,58,99,97,115,101,34,107,101,121,34,58,99,97,115,101,34,109,117,108,116,105,112,108,101,34,58,99,97,115,101,34,114,101,102,34,58,98,114,101,97,107,59,99,97,115,101,34,97,117,116,111,70,111,99,117,115,34,58,111,46,97,117,116,111,102,111,99,117,115,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,97,108,108,111,119,102,117,108,108,115,99,114,101,101,110,34,58,99,97,115,101,34,97,117,116,111,112,108,97,121,34,58,99,97,115,101,34,99,97,112,116,117,114,101,34,58,99,97,115,101,34,99,104,101,99,107,101,100,34,58,99,97,115,101,34,99,111,110,116,114,111,108,115,34,58,99,97,115,101,34,100,101,102,97,117,108,116,34,58,99,97,115,101,34,100,105,115,97,98,108,101,100,34,58,99,97,115,101,34,104,105,100,100,101,110,34,58,99,97,115,101,34,105,110,100,101,116,101,114,109,105,110,97,116,101,34,58,99,97,115,101,34,108,111,111,112,34,58,99,97,115,101,34,109,117,116,101,100,34,58,99,97,115,101,34,110,111,118,97,108,105,100,97,116,101,34,58,99,97,115,101,34,111,112,101,110,34,58,99,97,115,101,34,114,101,97,100,79,110,108,121,34,58,99,97,115,101,34,114,101,113,117,105,114,101,100,34,58,99,97,115,101,34,114,101,118,101,114,115,101,100,34,58,99,97,115,101,34,115,99,111,112,101,100,34,58,99,97,115,101,34,115,101,97,109,108,101,115,115,34,58,99,97,115,101,34,115,101,108,101,99,116,101,100,34,58,111,91,101,93,61,33,33,110,59,98,114,101,97,107,59,99,97,115,101,34,100,101,102,97,117,108,116,67,104,101,99,107,101,100,34,58,99,97,115,101,34,118,97,108,117,101,34,58,99,97,115,101,34,118,111,108,117,109,101,34,58,105,102,40,105,38,38,34,118,97,108,117,101,34,61,61,61,101,41,114,101,116,117,114,110,59,118,97,114,32,115,61,68,40,110,41,63,34,34,58,110,59,111,91,101,93,33,61,61,115,38,38,40,111,91,101,93,61,115,41,59,98,114,101,97,107,59,99,97,115,101,34,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,34,58,118,97,114,32,108,61,116,38,38,116,46,95,95,104,116,109,108,124,124,34,34,44,100,61,110,38,38,110,46,95,95,104,116,109,108,124,124,34,34,59,108,33,61,61,100,38,38,40,68,40,100,41,124,124,87,40,111,44,100,41,124,124,40,121,40,97,41,124,124,40,49,50,38,97,46,99,104,105,108,100,70,108,97,103,115,63,108,101,40,97,46,99,104,105,108,100,114,101,110,41,58,50,61,61,61,97,46,99,104,105,108,100,70,108,97,103,115,38,38,115,101,40,97,46,99,104,105,108,100,114,101,110,41,44,97,46,99,104,105,108,100,114,101,110,61,110,117,108,108,44,97,46,99,104,105,108,100,70,108,97,103,115,61,49,41,44,111,46,105,110,110,101,114,72,84,77,76,61,100,41,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,34,111,34,61,61,61,101,91,48,93,38,38,34,110,34,61,61,61,101,91,49,93,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,105,102,40,95,40,110,41,124,124,68,40,110,41,41,123,118,97,114,32,115,61,111,91,97,93,59,115,38,38,115,46,119,114,97,112,112,101,100,124,124,40,111,91,97,93,61,110,41,125,101,108,115,101,123,118,97,114,32,108,61,110,46,101,118,101,110,116,59,108,38,38,95,40,108,41,38,38,40,111,91,97,93,61,40,114,61,108,44,105,61,110,44,102,117,110,99,116,105,111,110,40,101,41,123,114,40,105,46,100,97,116,97,44,101,41,125,41,41,125,125,40,101,44,48,44,110,44,111,41,58,68,40,110,41,63,111,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,101,41,58,34,115,116,121,108,101,34,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,61,110,46,115,116,121,108,101,59,105,102,40,104,40,116,41,41,105,46,99,115,115,84,101,120,116,61,116,59,101,108,115,101,32,105,102,40,68,40,101,41,124,124,104,40,101,41,41,102,111,114,40,111,32,105,110,32,116,41,114,61,116,91,111,93,44,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,59,101,108,115,101,123,102,111,114,40,111,32,105,110,32,116,41,40,114,61,116,91,111,93,41,33,61,61,101,91,111,93,38,38,40,105,91,111,93,61,118,40,114,41,63,99,101,40,111,44,114,41,58,114,41,59,102,111,114,40,111,32,105,110,32,101,41,68,40,116,91,111,93,41,38,38,40,105,91,111,93,61,34,34,41,125,125,40,116,44,110,44,111,41,58,114,38,38,84,91,101,93,63,111,46,115,101,116,65,116,116,114,105,98,117,116,101,78,83,40,84,91,101,93,44,101,44,110,41,58,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,101,44,110,41,125,125,102,117,110,99,116,105,111,110,32,112,101,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,33,49,44,97,61,48,60,40,52,52,56,38,116,41,59,102,111,114,40,118,97,114,32,115,32,105,110,32,97,38,38,40,105,61,105,101,40,110,41,41,38,38,114,101,40,116,44,111,44,110,41,44,110,41,117,101,40,115,44,110,117,108,108,44,110,91,115,93,44,111,44,114,44,105,44,110,117,108,108,41,59,97,38,38,111,101,40,116,44,101,44,111,44,110,44,33,48,44,105,41,125,102,117,110,99,116,105,111,110,32,102,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,110,101,119,32,116,40,110,44,111,41,59,105,102,40,40,101,46,99,104,105,108,100,114,101,110,61,114,41,46,36,86,61,101,44,114,46,36,66,83,61,33,49,44,114,46,99,111,110,116,101,120,116,61,111,44,114,46,112,114,111,112,115,61,61,61,76,38,38,40,114,46,112,114,111,112,115,61,110,41,44,114,46,36,85,78,61,33,49,44,95,40,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,41,123,105,102,40,114,46,36,66,82,61,33,48,44,114,46,99,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,41,44,114,46,36,80,83,83,41,123,118,97,114,32,105,61,114,46,115,116,97,116,101,44,97,61,114,46,36,80,83,59,105,102,40,121,40,105,41,41,114,46,115,116,97,116,101,61,97,59,101,108,115,101,32,102,111,114,40,118,97,114,32,115,32,105,110,32,97,41,105,91,115,93,61,97,91,115,93,59,114,46,36,80,83,83,61,33,49,44,114,46,36,80,83,61,110,117,108,108,125,114,46,36,66,82,61,33,49,125,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,114,41,59,118,97,114,32,108,44,100,61,104,101,40,114,46,114,101,110,100,101,114,40,110,44,114,46,115,116,97,116,101,44,111,41,44,101,41,59,114,101,116,117,114,110,32,95,40,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,108,61,114,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,68,40,108,41,63,114,46,36,67,88,61,111,58,114,46,36,67,88,61,98,40,111,44,108,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,114,41,44,114,46,36,76,73,61,100,44,114,125,102,117,110,99,116,105,111,110,32,104,101,40,101,44,116,41,123,114,101,116,117,114,110,32,102,40,101,41,63,101,61,120,40,41,58,112,40,101,41,63,101,61,36,40,101,44,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,49,52,38,101,46,102,108,97,103,115,38,38,40,101,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,41,44,101,125,102,117,110,99,116,105,111,110,32,118,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,114,101,116,117,114,110,32,52,56,49,38,114,63,109,101,40,101,44,116,44,110,44,111,41,58,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,44,97,61,101,46,116,121,112,101,44,115,61,101,46,112,114,111,112,115,124,124,76,44,108,61,101,46,114,101,102,59,105,102,40,114,41,123,118,97,114,32,100,61,102,101,40,101,44,97,44,115,44,110,41,59,101,46,100,111,109,61,105,61,118,101,40,100,46,36,76,73,44,110,117,108,108,44,100,46,36,67,88,44,111,41,44,98,101,40,101,44,108,44,100,41,44,100,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,97,40,115,44,110,41,44,101,41,59,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,105,61,118,101,40,99,44,110,117,108,108,44,110,44,111,41,44,107,101,40,115,44,108,44,105,41,125,121,40,116,41,124,124,77,40,116,44,105,41,59,114,101,116,117,114,110,32,105,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,53,49,50,38,114,124,124,49,54,38,114,63,103,101,40,101,44,116,41,58,49,48,50,52,38,114,63,40,118,101,40,101,46,99,104,105,108,100,114,101,110,44,101,46,116,121,112,101,44,110,44,33,49,41,44,101,46,100,111,109,61,103,101,40,120,40,41,44,116,41,41,58,118,111,105,100,32,48,125,102,117,110,99,116,105,111,110,32,103,101,40,101,44,116,41,123,118,97,114,32,110,61,101,46,100,111,109,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,101,46,99,104,105,108,100,114,101,110,41,59,114,101,116,117,114,110,32,121,40,116,41,124,124,77,40,116,44,110,41,44,110,125,102,117,110,99,116,105,111,110,32,109,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,44,105,61,101,46,99,104,105,108,100,114,101,110,44,97,61,101,46,112,114,111,112,115,44,115,61,101,46,99,108,97,115,115,78,97,109,101,44,108,61,101,46,114,101,102,44,100,61,101,46,99,104,105,108,100,70,108,97,103,115,59,111,61,111,124,124,48,60,40,51,50,38,114,41,59,118,97,114,32,99,44,117,61,40,99,61,101,46,116,121,112,101,44,33,48,61,61,61,111,63,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,78,83,40,79,44,99,41,58,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,99,41,41,59,105,102,40,101,46,100,111,109,61,117,44,68,40,115,41,124,124,34,34,61,61,61,115,124,124,40,111,63,117,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,115,41,58,117,46,99,108,97,115,115,78,97,109,101,61,115,41,44,121,40,116,41,124,124,77,40,116,44,117,41,44,48,61,61,40,49,38,100,41,41,123,118,97,114,32,112,61,33,48,61,61,61,111,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,101,46,116,121,112,101,59,50,61,61,61,100,63,118,101,40,105,44,117,44,110,44,112,41,58,49,50,38,100,38,38,121,101,40,105,44,117,44,110,44,112,41,125,114,101,116,117,114,110,32,121,40,97,41,124,124,112,101,40,101,44,114,44,97,44,117,44,111,41,44,95,40,108,41,38,38,67,101,40,117,44,108,41,44,117,125,102,117,110,99,116,105,111,110,32,121,101,40,101,44,116,44,110,44,111,41,123,102,111,114,40,118,97,114,32,114,61,48,44,105,61,101,46,108,101,110,103,116,104,59,114,60,105,59,114,43,43,41,123,118,97,114,32,97,61,101,91,114,93,59,121,40,97,46,100,111,109,41,124,124,40,101,91,114,93,61,97,61,119,40,97,41,41,44,118,101,40,97,44,116,44,110,44,111,41,125,125,102,117,110,99,116,105,111,110,32,98,101,40,101,44,116,44,110,41,123,118,97,114,32,111,59,95,40,116,41,38,38,116,40,110,41,44,95,40,110,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,110,44,102,117,110,99,116,105,111,110,40,41,123,111,46,99,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,41,125,41,41,125,102,117,110,99,116,105,111,110,32,107,101,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,44,105,59,68,40,116,41,124,124,40,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,41,38,38,116,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,77,111,117,110,116,40,101,41,44,95,40,116,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,41,38,38,85,46,112,117,115,104,40,40,111,61,116,44,114,61,110,44,105,61,101,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,111,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,77,111,117,110,116,40,114,44,105,41,125,41,41,41,125,102,117,110,99,116,105,111,110,32,67,101,40,101,44,116,41,123,85,46,112,117,115,104,40,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,40,101,41,125,41,125,102,117,110,99,116,105,111,110,32,36,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,44,105,44,97,61,101,46,99,104,105,108,100,114,101,110,44,115,61,101,46,112,114,111,112,115,44,108,61,101,46,99,108,97,115,115,78,97,109,101,44,100,61,101,46,102,108,97,103,115,44,99,61,101,46,114,101,102,59,105,102,40,111,61,111,124,124,48,60,40,51,50,38,100,41,44,49,33,61,61,116,46,110,111,100,101,84,121,112,101,124,124,116,46,116,97,103,78,97,109,101,46,116,111,76,111,119,101,114,67,97,115,101,40,41,33,61,61,101,46,116,121,112,101,41,123,118,97,114,32,117,61,109,101,40,101,44,110,117,108,108,44,110,44,111,41,59,101,46,100,111,109,61,117,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,117,44,116,41,125,101,108,115,101,123,118,97,114,32,112,61,40,101,46,100,111,109,61,116,41,46,102,105,114,115,116,67,104,105,108,100,44,102,61,101,46,99,104,105,108,100,70,108,97,103,115,59,105,102,40,48,61,61,40,49,38,102,41,41,123,102,111,114,40,118,97,114,32,104,61,110,117,108,108,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,56,61,61,61,112,46,110,111,100,101,84,121,112,101,38,38,40,34,33,34,61,61,61,112,46,100,97,116,97,63,116,46,114,101,112,108,97,99,101,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,34,41,44,112,41,58,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,41,44,112,61,104,59,105,102,40,112,61,116,46,102,105,114,115,116,67,104,105,108,100,44,50,61,61,61,102,41,121,40,112,41,63,118,101,40,97,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,97,44,112,44,110,44,111,41,44,112,61,104,41,59,101,108,115,101,32,105,102,40,49,50,38,102,41,102,111,114,40,118,97,114,32,118,61,48,44,103,61,97,46,108,101,110,103,116,104,59,118,60,103,59,118,43,43,41,123,118,97,114,32,109,61,97,91,118,93,59,121,40,112,41,63,118,101,40,109,44,116,44,110,44,111,41,58,40,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,68,101,40,109,44,112,44,110,44,111,41,44,112,61,104,41,125,102,111,114,40,59,112,59,41,104,61,112,46,110,101,120,116,83,105,98,108,105,110,103,44,116,46,114,101,109,111,118,101,67,104,105,108,100,40,112,41,44,112,61,104,125,101,108,115,101,32,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,124,124,40,114,61,116,44,105,61,115,44,66,111,111,108,101,97,110,40,105,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,38,38,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,38,38,87,40,114,44,105,46,100,97,110,103,101,114,111,117,115,108,121,83,101,116,73,110,110,101,114,72,84,77,76,46,95,95,104,116,109,108,41,41,41,124,124,40,116,46,116,101,120,116,67,111,110,116,101,110,116,61,34,34,44,52,52,56,38,100,38,38,40,116,46,100,101,102,97,117,108,116,86,97,108,117,101,61,34,34,41,41,59,121,40,115,41,124,124,112,101,40,101,44,100,44,115,44,116,44,111,41,44,68,40,108,41,63,34,34,33,61,61,116,46,99,108,97,115,115,78,97,109,101,38,38,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,111,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,108,41,58,116,46,99,108,97,115,115,78,97,109,101,61,108,44,95,40,99,41,38,38,67,101,40,116,44,99,41,125,125,102,117,110,99,116,105,111,110,32,68,101,40,101,44,116,44,110,44,111,41,123,118,97,114,32,114,61,101,46,102,108,97,103,115,59,49,52,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,101,46,116,121,112,101,44,97,61,101,46,114,101,102,44,115,61,101,46,112,114,111,112,115,124,124,76,59,105,102,40,114,41,123,118,97,114,32,108,61,102,101,40,101,44,105,44,115,44,110,41,44,100,61,108,46,36,76,73,59,68,101,40,100,44,116,44,108,46,36,67,88,44,111,41,44,101,46,100,111,109,61,100,46,100,111,109,44,98,101,40,48,44,97,44,108,41,44,108,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,99,61,104,101,40,105,40,115,44,110,41,44,101,41,59,68,101,40,99,44,116,44,110,44,111,41,44,101,46,99,104,105,108,100,114,101,110,61,99,44,101,46,100,111,109,61,99,46,100,111,109,44,107,101,40,115,44,97,44,116,41,125,125,40,101,44,116,44,110,44,111,44,48,60,40,52,38,114,41,41,58,52,56,49,38,114,63,36,101,40,101,44,116,44,110,44,111,41,58,49,54,38,114,63,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,51,33,61,61,116,46,110,111,100,101,84,121,112,101,41,123,118,97,114,32,110,61,103,101,40,101,44,110,117,108,108,41,59,101,46,100,111,109,61,110,44,70,40,116,46,112,97,114,101,110,116,78,111,100,101,44,110,44,116,41,125,101,108,115,101,123,118,97,114,32,111,61,101,46,99,104,105,108,100,114,101,110,59,116,46,110,111,100,101,86,97,108,117,101,33,61,61,111,38,38,40,116,46,110,111,100,101,86,97,108,117,101,61,111,41,44,101,46,100,111,109,61,116,125,125,40,101,44,116,41,58,53,49,50,38,114,63,101,46,100,111,109,61,116,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,114,111,119,32,101,124,124,40,101,61,97,41,44,110,101,119,32,69,114,114,111,114,40,34,73,110,102,101,114,110,111,32,69,114,114,111,114,58,32,34,43,101,41,125,40,41,125,102,117,110,99,116,105,111,110,32,95,101,40,101,44,116,44,110,44,111,44,114,41,123,115,101,40,101,41,44,70,40,110,44,118,101,40,116,44,110,117,108,108,44,111,44,114,41,44,101,46,100,111,109,41,125,102,117,110,99,116,105,111,110,32,120,101,40,101,44,116,44,110,44,111,44,114,41,123,105,102,40,101,33,61,61,116,41,123,118,97,114,32,105,61,48,124,116,46,102,108,97,103,115,59,101,46,102,108,97,103,115,33,61,61,105,124,124,50,48,52,56,38,105,63,95,101,40,101,44,116,44,110,44,111,44,114,41,58,52,56,49,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,41,123,118,97,114,32,105,61,116,46,116,121,112,101,59,105,102,40,101,46,116,121,112,101,33,61,61,105,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,97,44,115,61,101,46,100,111,109,44,108,61,116,46,102,108,97,103,115,44,100,61,101,46,112,114,111,112,115,44,99,61,116,46,112,114,111,112,115,44,117,61,33,49,44,112,61,33,49,59,105,102,40,116,46,100,111,109,61,115,44,114,61,114,124,124,48,60,40,51,50,38,108,41,44,100,33,61,61,99,41,123,118,97,114,32,102,61,100,124,124,76,59,105,102,40,40,97,61,99,124,124,76,41,33,61,61,76,41,102,111,114,40,118,97,114,32,104,32,105,110,40,117,61,48,60,40,52,52,56,38,108,41,41,38,38,40,112,61,105,101,40,97,41,41,44,97,41,123,118,97,114,32,118,61,102,91,104,93,44,103,61,97,91,104,93,59,118,33,61,61,103,38,38,117,101,40,104,44,118,44,103,44,115,44,114,44,112,44,101,41,125,105,102,40,102,33,61,61,76,41,102,111,114,40,118,97,114,32,109,32,105,110,32,102,41,97,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,109,41,124,124,68,40,102,91,109,93,41,124,124,117,101,40,109,44,102,91,109,93,44,110,117,108,108,44,115,44,114,44,112,44,101,41,125,118,97,114,32,121,61,101,46,99,104,105,108,100,114,101,110,44,98,61,116,46,99,104,105,108,100,114,101,110,44,107,61,116,46,114,101,102,44,67,61,101,46,99,108,97,115,115,78,97,109,101,44,36,61,116,46,99,108,97,115,115,78,97,109,101,59,121,33,61,61,98,38,38,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,121,44,98,44,115,44,111,44,114,38,38,34,102,111,114,101,105,103,110,79,98,106,101,99,116,34,33,61,61,105,41,44,117,38,38,111,101,40,108,44,116,44,115,44,97,44,33,49,44,112,41,44,67,33,61,61,36,38,38,40,68,40,36,41,63,115,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,41,58,114,63,115,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,36,41,58,115,46,99,108,97,115,115,78,97,109,101,61,36,41,44,95,40,107,41,38,38,101,46,114,101,102,33,61,61,107,38,38,67,101,40,115,44,107,41,125,125,40,101,44,116,44,110,44,111,44,114,41,58,49,52,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,41,123,118,97,114,32,97,61,116,46,116,121,112,101,44,115,61,101,46,107,101,121,44,108,61,116,46,107,101,121,59,105,102,40,101,46,116,121,112,101,33,61,61,97,124,124,115,33,61,61,108,41,95,101,40,101,44,116,44,110,44,111,44,114,41,59,101,108,115,101,123,118,97,114,32,100,61,116,46,112,114,111,112,115,124,124,76,59,105,102,40,105,41,123,118,97,114,32,99,61,101,46,99,104,105,108,100,114,101,110,59,99,46,36,85,80,68,61,33,48,44,99,46,36,86,61,116,44,78,101,40,99,44,99,46,115,116,97,116,101,44,116,44,100,44,110,44,111,44,114,44,33,49,44,33,49,41,44,99,46,36,85,80,68,61,33,49,125,101,108,115,101,123,118,97,114,32,117,61,33,48,44,112,61,101,46,112,114,111,112,115,44,102,61,116,46,114,101,102,44,104,61,33,68,40,102,41,44,118,61,101,46,99,104,105,108,100,114,101,110,59,105,102,40,116,46,100,111,109,61,101,46,100,111,109,44,116,46,99,104,105,108,100,114,101,110,61,118,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,41,38,38,40,117,61,102,46,111,110,67,111,109,112,111,110,101,110,116,83,104,111,117,108,100,85,112,100,97,116,101,40,112,44,100,41,41,44,33,49,33,61,61,117,41,123,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,112,44,100,41,59,118,97,114,32,103,61,97,40,100,44,111,41,59,103,33,61,61,109,38,38,40,103,61,104,101,40,103,44,116,41,44,120,101,40,118,44,103,44,110,44,111,44,114,41,44,116,46,99,104,105,108,100,114,101,110,61,103,44,116,46,100,111,109,61,103,46,100,111,109,44,104,38,38,95,40,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,102,46,111,110,67,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,112,44,100,41,41,125,101,108,115,101,32,49,52,38,118,46,102,108,97,103,115,38,38,40,118,46,112,97,114,101,110,116,86,78,111,100,101,61,116,41,125,125,125,40,101,44,116,44,110,44,111,44,114,44,48,60,40,52,38,105,41,41,58,49,54,38,105,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,44,114,61,116,46,99,104,105,108,100,114,101,110,59,121,40,110,46,102,105,114,115,116,67,104,105,108,100,41,63,40,110,46,116,101,120,116,67,111,110,116,101,110,116,61,114,44,111,61,110,46,102,105,114,115,116,67,104,105,108,100,41,58,40,111,61,101,46,100,111,109,44,114,33,61,61,101,46,99,104,105,108,100,114,101,110,38,38,40,111,46,110,111,100,101,86,97,108,117,101,61,114,41,41,59,116,46,100,111,109,61,111,125,40,101,44,116,44,110,41,58,53,49,50,38,105,63,116,46,100,111,109,61,101,46,100,111,109,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,101,46,116,121,112,101,44,114,61,116,46,116,121,112,101,44,105,61,116,46,99,104,105,108,100,114,101,110,59,105,102,40,119,101,40,101,46,99,104,105,108,100,70,108,97,103,115,44,116,46,99,104,105,108,100,70,108,97,103,115,44,101,46,99,104,105,108,100,114,101,110,44,105,44,111,44,110,44,33,49,41,44,116,46,100,111,109,61,101,46,100,111,109,44,111,33,61,61,114,38,38,33,102,40,105,41,41,123,118,97,114,32,97,61,105,46,100,111,109,59,111,46,114,101,109,111,118,101,67,104,105,108,100,40,97,41,44,114,46,97,112,112,101,110,100,67,104,105,108,100,40,97,41,125,125,40,101,44,116,44,111,41,125,125,102,117,110,99,116,105,111,110,32,119,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,115,119,105,116,99,104,40,101,41,123,99,97,115,101,32,50,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,120,101,40,110,44,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,97,101,40,110,44,114,41,59,98,114,101,97,107,59,100,101,102,97,117,108,116,58,97,101,40,110,44,114,41,44,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,99,97,115,101,32,49,58,115,119,105,116,99,104,40,116,41,123,99,97,115,101,32,50,58,118,101,40,111,44,114,44,105,44,97,41,59,98,114,101,97,107,59,99,97,115,101,32,49,58,98,114,101,97,107,59,100,101,102,97,117,108,116,58,121,101,40,111,44,114,44,105,44,97,41,125,98,114,101,97,107,59,100,101,102,97,117,108,116,58,105,102,40,49,50,38,116,41,123,118,97,114,32,115,61,110,46,108,101,110,103,116,104,44,108,61,111,46,108,101,110,103,116,104,59,48,61,61,61,115,63,48,60,108,38,38,121,101,40,111,44,114,44,105,44,97,41,58,48,61,61,61,108,63,100,101,40,114,44,110,41,58,56,61,61,61,116,38,38,56,61,61,61,101,63,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,118,97,114,32,115,44,108,44,100,61,105,45,49,44,99,61,97,45,49,44,117,61,48,44,112,61,101,91,117,93,44,102,61,116,91,117,93,59,101,58,123,102,111,114,40,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,117,93,61,102,44,100,60,43,43,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,117,93,44,102,61,116,91,117,93,125,102,111,114,40,112,61,101,91,100,93,44,102,61,116,91,99,93,59,112,46,107,101,121,61,61,61,102,46,107,101,121,59,41,123,105,102,40,102,46,100,111,109,38,38,40,116,91,99,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,101,91,100,93,61,102,44,99,45,45,44,45,45,100,60,117,124,124,99,60,117,41,98,114,101,97,107,32,101,59,112,61,101,91,100,93,44,102,61,116,91,99,93,125,125,105,102,40,100,60,117,41,123,105,102,40,117,60,61,99,41,102,111,114,40,118,97,114,32,104,61,40,108,61,99,43,49,41,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,59,117,60,61,99,59,41,40,102,61,116,91,117,93,41,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,117,43,43,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,104,41,125,101,108,115,101,32,105,102,40,99,60,117,41,102,111,114,40,59,117,60,61,100,59,41,97,101,40,101,91,117,43,43,93,44,110,41,59,101,108,115,101,123,118,97,114,32,118,61,117,44,103,61,117,44,109,61,100,45,117,43,49,44,121,61,99,45,117,43,49,44,98,61,91,93,59,102,111,114,40,115,61,48,59,115,60,121,59,115,43,43,41,98,46,112,117,115,104,40,48,41,59,118,97,114,32,107,61,109,61,61,61,105,44,67,61,33,49,44,36,61,48,44,68,61,48,59,105,102,40,97,60,52,124,124,40,109,124,121,41,60,51,50,41,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,123,102,111,114,40,117,61,103,59,117,60,61,99,59,117,43,43,41,105,102,40,102,61,116,91,117,93,44,112,46,107,101,121,61,61,61,102,46,107,101,121,41,123,105,102,40,98,91,117,45,103,93,61,115,43,49,44,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,59,98,114,101,97,107,125,33,107,38,38,99,60,117,38,38,97,101,40,112,44,110,41,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,123,118,97,114,32,95,61,123,125,59,102,111,114,40,115,61,103,59,115,60,61,99,59,115,43,43,41,95,91,116,91,115,93,46,107,101,121,93,61,115,59,102,111,114,40,115,61,118,59,115,60,61,100,59,115,43,43,41,105,102,40,112,61,101,91,115,93,44,68,60,121,41,105,102,40,118,111,105,100,32,48,33,61,61,40,117,61,95,91,112,46,107,101,121,93,41,41,123,105,102,40,107,41,102,111,114,40,107,61,33,49,59,118,60,115,59,41,97,101,40,101,91,118,43,43,93,44,110,41,59,102,61,116,91,117,93,44,98,91,117,45,103,93,61,115,43,49,44,117,60,36,63,67,61,33,48,58,36,61,117,44,102,46,100,111,109,38,38,40,116,91,117,93,61,102,61,119,40,102,41,41,44,120,101,40,112,44,102,44,110,44,111,44,114,41,44,68,43,43,125,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,59,101,108,115,101,32,107,124,124,97,101,40,112,44,110,41,125,105,102,40,107,41,100,101,40,110,44,101,41,44,121,101,40,116,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,67,41,123,118,97,114,32,120,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,44,110,44,111,44,114,44,105,44,97,61,101,46,115,108,105,99,101,40,41,44,115,61,91,48,93,44,108,61,101,46,108,101,110,103,116,104,59,102,111,114,40,116,61,48,59,116,60,108,59,116,43,43,41,123,118,97,114,32,100,61,101,91,116,93,59,105,102,40,48,33,61,61,100,41,123,105,102,40,110,61,115,91,115,46,108,101,110,103,116,104,45,49,93,44,101,91,110,93,60,100,41,123,97,91,116,93,61,110,44,115,46,112,117,115,104,40,116,41,59,99,111,110,116,105,110,117,101,125,102,111,114,40,111,61,48,44,114,61,115,46,108,101,110,103,116,104,45,49,59,111,60,114,59,41,101,91,115,91,105,61,40,111,43,114,41,47,50,124,48,93,93,60,100,63,111,61,105,43,49,58,114,61,105,59,100,60,101,91,115,91,111,93,93,38,38,40,48,60,111,38,38,40,97,91,116,93,61,115,91,111,45,49,93,41,44,115,91,111,93,61,116,41,125,125,111,61,115,46,108,101,110,103,116,104,44,114,61,115,91,111,45,49,93,59,102,111,114,40,59,48,60,111,45,45,59,41,115,91,111,93,61,114,44,114,61,97,91,114,93,59,114,101,116,117,114,110,32,115,125,40,98,41,59,102,111,114,40,117,61,120,46,108,101,110,103,116,104,45,49,44,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,63,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,60,48,124,124,115,33,61,61,120,91,117,93,63,40,102,61,116,91,36,61,115,43,103,93,44,108,61,36,43,49,44,69,40,110,44,102,46,100,111,109,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,58,117,45,45,125,101,108,115,101,32,105,102,40,68,33,61,61,121,41,102,111,114,40,115,61,121,45,49,59,48,60,61,115,59,115,45,45,41,48,61,61,61,98,91,115,93,38,38,40,40,102,61,116,91,36,61,115,43,103,93,41,46,100,111,109,38,38,40,116,91,36,93,61,102,61,119,40,102,41,41,44,108,61,36,43,49,44,69,40,110,44,118,101,40,102,44,110,117,108,108,44,111,44,114,41,44,108,60,97,63,116,91,108,93,46,100,111,109,58,110,117,108,108,41,41,125,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,44,111,44,114,44,105,44,97,41,123,102,111,114,40,118,97,114,32,115,44,108,44,100,61,97,60,105,63,97,58,105,44,99,61,48,59,99,60,100,59,99,43,43,41,115,61,116,91,99,93,44,108,61,101,91,99,93,44,115,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,120,101,40,108,44,115,44,110,44,111,44,114,41,44,101,91,99,93,61,115,59,105,102,40,105,60,97,41,102,111,114,40,99,61,100,59,99,60,97,59,99,43,43,41,40,115,61,116,91,99,93,41,46,100,111,109,38,38,40,115,61,116,91,99,93,61,119,40,115,41,41,44,118,101,40,115,44,110,44,111,44,114,41,59,101,108,115,101,32,105,102,40,97,60,105,41,102,111,114,40,99,61,100,59,99,60,105,59,99,43,43,41,97,101,40,101,91,99,93,44,110,41,125,40,110,44,111,44,114,44,105,44,97,44,115,44,108,41,125,101,108,115,101,32,49,61,61,61,116,63,100,101,40,114,44,110,41,58,40,100,101,40,114,44,110,41,44,118,101,40,111,44,114,44,105,44,97,41,41,125,125,102,117,110,99,116,105,111,110,32,78,101,40,101,44,116,44,110,44,111,44,114,44,105,44,97,44,115,44,108,41,123,118,97,114,32,100,44,99,61,101,46,115,116,97,116,101,44,117,61,101,46,112,114,111,112,115,59,105,102,40,33,40,110,46,99,104,105,108,100,114,101,110,61,101,41,46,36,85,78,41,123,105,102,40,117,33,61,61,111,124,124,111,61,61,61,76,41,123,105,102,40,33,108,38,38,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,41,41,123,105,102,40,101,46,36,66,82,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,40,111,44,105,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,101,46,36,66,82,61,33,49,125,101,46,36,80,83,83,38,38,40,116,61,98,40,116,44,101,46,36,80,83,41,44,101,46,36,80,83,83,61,33,49,44,101,46,36,80,83,61,110,117,108,108,41,125,118,97,114,32,112,61,66,111,111,108,101,97,110,40,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,41,59,105,102,40,115,124,124,33,112,124,124,112,38,38,101,46,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,40,111,44,116,44,105,41,41,123,95,40,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,41,38,38,40,101,46,36,66,83,61,33,48,44,101,46,99,111,109,112,111,110,101,110,116,87,105,108,108,85,112,100,97,116,101,40,111,44,116,44,105,41,44,101,46,36,66,83,61,33,49,41,44,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,44,95,40,80,46,98,101,102,111,114,101,82,101,110,100,101,114,41,38,38,80,46,98,101,102,111,114,101,82,101,110,100,101,114,40,101,41,44,100,61,101,46,114,101,110,100,101,114,40,111,44,116,44,105,41,44,95,40,80,46,97,102,116,101,114,82,101,110,100,101,114,41,38,38,80,46,97,102,116,101,114,82,101,110,100,101,114,40,101,41,59,118,97,114,32,102,44,104,61,100,33,61,61,109,59,105,102,40,95,40,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,41,38,38,40,102,61,101,46,103,101,116,67,104,105,108,100,67,111,110,116,101,120,116,40,41,41,44,102,61,68,40,102,41,63,105,58,98,40,105,44,102,41,44,101,46,36,67,88,61,102,44,104,41,120,101,40,101,46,36,76,73,44,101,46,36,76,73,61,104,101,40,100,44,110,41,44,114,44,102,44,97,41,44,95,40,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,41,38,38,101,46,99,111,109,112,111,110,101,110,116,68,105,100,85,112,100,97,116,101,40,117,44,99,41,125,101,108,115,101,32,101,46,112,114,111,112,115,61,111,44,101,46,115,116,97,116,101,61,116,44,101,46,99,111,110,116,101,120,116,61,105,59,110,46,100,111,109,61,101,46,36,76,73,46,100,111,109,125,125,101,38,38,100,111,99,117,109,101,110,116,46,98,111,100,121,59,102,117,110,99,116,105,111,110,32,114,40,101,44,116,44,110,41,123,105,102,40,101,33,61,61,109,41,123,118,97,114,32,111,61,116,46,36,86,59,114,101,116,117,114,110,32,68,40,111,41,63,102,40,101,41,124,124,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,121,40,116,46,102,105,114,115,116,67,104,105,108,100,41,63,40,118,101,40,101,44,116,44,76,44,33,49,41,44,116,46,36,86,61,101,41,58,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,118,97,114,32,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,105,102,40,33,121,40,111,41,41,102,111,114,40,102,40,101,41,124,124,68,101,40,101,44,111,44,76,44,33,49,41,44,111,61,116,46,102,105,114,115,116,67,104,105,108,100,59,111,61,111,46,110,101,120,116,83,105,98,108,105,110,103,59,41,116,46,114,101,109,111,118,101,67,104,105,108,100,40,111,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,116,46,36,86,61,101,44,95,40,110,41,38,38,110,40,41,125,40,101,44,116,41,44,111,61,101,41,58,68,40,101,41,63,40,97,101,40,111,44,116,41,44,116,46,36,86,61,110,117,108,108,41,58,40,101,46,100,111,109,38,38,40,101,61,119,40,101,41,41,44,120,101,40,111,44,101,44,116,44,76,44,33,49,41,44,111,61,116,46,36,86,61,101,41,44,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,44,95,40,110,41,38,38,110,40,41,44,95,40,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,41,38,38,80,46,114,101,110,100,101,114,67,111,109,112,108,101,116,101,40,111,41,44,111,38,38,49,52,38,111,46,102,108,97,103,115,63,111,46,99,104,105,108,100,114,101,110,58,118,111,105,100,32,48,125,125,118,97,114,32,83,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,80,114,111,109,105,115,101,63,110,117,108,108,58,80,114,111,109,105,115,101,46,114,101,115,111,108,118,101,40,41,44,80,101,61,34,117,110,100,101,102,105,110,101,100,34,61,61,116,121,112,101,111,102,32,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,63,115,101,116,84,105,109,101,111,117,116,58,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,46,98,105,110,100,40,119,105,110,100,111,119,41,59,102,117,110,99,116,105,111,110,32,79,101,40,101,44,116,44,110,44,111,41,123,95,40,116,41,38,38,40,116,61,116,40,101,46,115,116,97,116,101,44,101,46,112,114,111,112,115,44,101,46,99,111,110,116,101,120,116,41,41,59,118,97,114,32,114,44,105,44,97,44,115,61,101,46,36,80,83,59,105,102,40,68,40,115,41,41,101,46,36,80,83,61,116,59,101,108,115,101,32,102,111,114,40,118,97,114,32,108,32,105,110,32,116,41,115,91,108,93,61,116,91,108,93,59,105,102,40,101,46,36,80,83,83,124,124,101,46,36,66,82,41,101,46,36,80,83,83,61,33,48,44,101,46,36,66,82,38,38,95,40,110,41,38,38,85,46,112,117,115,104,40,110,46,98,105,110,100,40,101,41,41,59,101,108,115,101,32,105,102,40,101,46,36,85,80,68,41,123,118,97,114,32,100,61,101,46,36,81,85,59,121,40,100,41,38,38,40,100,61,101,46,36,81,85,61,91,93,44,105,61,101,44,97,61,100,44,114,61,102,117,110,99,116,105,111,110,40,41,123,105,46,36,81,85,61,110,117,108,108,44,105,46,36,85,80,68,61,33,48,44,84,101,40,105,44,33,49,44,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,44,116,61,97,46,108,101,110,103,116,104,59,101,60,116,59,101,43,43,41,97,91,101,93,46,99,97,108,108,40,105,41,125,41,44,105,46,36,85,80,68,61,33,49,125,44,83,101,63,83,101,46,116,104,101,110,40,114,41,58,80,101,40,114,41,41,44,95,40,110,41,38,38,100,46,112,117,115,104,40,110,41,125,101,108,115,101,32,101,46,36,80,83,83,61,33,48,44,101,46,36,85,80,68,61,33,48,44,84,101,40,101,44,111,44,110,41,44,101,46,36,85,80,68,61,33,49,125,102,117,110,99,116,105,111,110,32,84,101,40,101,44,116,44,110,41,123,105,102,40,33,101,46,36,85,78,41,123,105,102,40,116,124,124,33,101,46,36,66,82,41,123,101,46,36,80,83,83,61,33,49,59,118,97,114,32,111,61,101,46,36,80,83,44,114,61,98,40,101,46,115,116,97,116,101,44,111,41,44,105,61,101,46,112,114,111,112,115,44,97,61,101,46,99,111,110,116,101,120,116,59,101,46,36,80,83,61,110,117,108,108,59,118,97,114,32,115,61,101,46,36,86,44,108,61,101,46,36,76,73,59,105,102,40,78,101,40,101,44,114,44,115,44,105,44,108,46,100,111,109,38,38,108,46,100,111,109,46,112,97,114,101,110,116,78,111,100,101,44,97,44,48,60,40,51,50,38,115,46,102,108,97,103,115,41,44,116,44,33,48,41,44,101,46,36,85,78,41,114,101,116,117,114,110,59,105,102,40,48,61,61,40,49,48,50,52,38,101,46,36,76,73,46,102,108,97,103,115,41,41,102,111,114,40,118,97,114,32,100,61,101,46,36,76,73,46,100,111,109,59,33,121,40,115,61,115,46,112,97,114,101,110,116,86,78,111,100,101,41,59,41,48,60,40,49,52,38,115,46,102,108,97,103,115,41,38,38,40,115,46,100,111,109,61,100,41,59,48,60,85,46,108,101,110,103,116,104,38,38,73,40,85,41,125,101,108,115,101,32,101,46,115,116,97,116,101,61,101,46,36,80,83,44,101,46,36,80,83,61,110,117,108,108,59,95,40,110,41,38,38,110,46,99,97,108,108,40,101,41,125,125,118,97,114,32,76,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,115,116,97,116,101,61,110,117,108,108,44,116,104,105,115,46,36,66,82,61,33,49,44,116,104,105,115,46,36,66,83,61,33,48,44,116,104,105,115,46,36,80,83,83,61,33,49,44,116,104,105,115,46,36,80,83,61,110,117,108,108,44,116,104,105,115,46,36,76,73,61,110,117,108,108,44,116,104,105,115,46,36,86,61,110,117,108,108,44,116,104,105,115,46,36,85,78,61,33,49,44,116,104,105,115,46,36,67,88,61,110,117,108,108,44,116,104,105,115,46,36,85,80,68,61,33,48,44,116,104,105,115,46,36,81,85,61,110,117,108,108,44,116,104,105,115,46,112,114,111,112,115,61,101,124,124,76,44,116,104,105,115,46,99,111,110,116,101,120,116,61,116,124,124,76,125,59,76,101,46,112,114,111,116,111,116,121,112,101,46,102,111,114,99,101,85,112,100,97,116,101,61,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,36,85,78,124,124,79,101,40,116,104,105,115,44,123,125,44,101,44,33,48,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,115,101,116,83,116,97,116,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,104,105,115,46,36,85,78,124,124,116,104,105,115,46,36,66,83,124,124,79,101,40,116,104,105,115,44,101,44,116,44,33,49,41,125,44,76,101,46,112,114,111,116,111,116,121,112,101,46,114,101,110,100,101,114,61,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,125,59,118,97,114,32,85,101,61,49,50,44,77,101,61,51,55,44,69,101,61,51,56,44,70,101,61,51,57,44,73,101,61,52,48,59,118,97,114,32,65,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,116,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,67,97,110,110,111,116,32,99,97,108,108,32,97,32,99,108,97,115,115,32,97,115,32,97,32,102,117,110,99,116,105,111,110,34,41,125,44,86,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,111,40,101,44,116,41,123,102,111,114,40,118,97,114,32,110,61,48,59,110,60,116,46,108,101,110,103,116,104,59,110,43,43,41,123,118,97,114,32,111,61,116,91,110,93,59,111,46,101,110,117,109,101,114,97,98,108,101,61,111,46,101,110,117,109,101,114,97,98,108,101,124,124,33,49,44,111,46,99,111,110,102,105,103,117,114,97,98,108,101,61,33,48,44,34,118,97,108,117,101,34,105,110,32,111,38,38,40,111,46,119,114,105,116,97,98,108,101,61,33,48,41,44,79,98,106,101,99,116,46,100,101,102,105,110,101,80,114,111,112,101,114,116,121,40,101,44,111,46,107,101,121,44,111,41,125,125,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,101,44,116,44,110,41,123,114,101,116,117,114,110,32,116,38,38,111,40,101,46,112,114,111,116,111,116,121,112,101,44,116,41,44,110,38,38,111,40,101,44,110,41,44,101,125,125,40,41,44,82,101,61,79,98,106,101,99,116,46,97,115,115,105,103,110,124,124,102,117,110,99,116,105,111,110,40,101,41,123,102,111,114,40,118,97,114,32,116,61,49,59,116,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,59,116,43,43,41,123,118,97,114,32,110,61,97,114,103,117,109,101,110,116,115,91,116,93,59,102,111,114,40,118,97,114,32,111,32,105,110,32,110,41,79,98,106,101,99,116,46,112,114,111,116,111,116,121,112,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,46,99,97,108,108,40,110,44,111,41,38,38,40,101,91,111,93,61,110,91,111,93,41,125,114,101,116,117,114,110,32,101,125,44,106,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,38,38,110,117,108,108,33,61,61,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,83,117,112,101,114,32,101,120,112,114,101,115,115,105,111,110,32,109,117,115,116,32,101,105,116,104,101,114,32,98,101,32,110,117,108,108,32,111,114,32,97,32,102,117,110,99,116,105,111,110,44,32,110,111,116,32,34,43,116,121,112,101,111,102,32,116,41,59,101,46,112,114,111,116,111,116,121,112,101,61,79,98,106,101,99,116,46,99,114,101,97,116,101,40,116,38,38,116,46,112,114,111,116,111,116,121,112,101,44,123,99,111,110,115,116,114,117,99,116,111,114,58,123,118,97,108,117,101,58,101,44,101,110,117,109,101,114,97,98,108,101,58,33,49,44,119,114,105,116,97,98,108,101,58,33,48,44,99,111,110,102,105,103,117,114,97,98,108,101,58,33,48,125,125,41,44,116,38,38,40,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,63,79,98,106,101,99,116,46,115,101,116,80,114,111,116,111,116,121,112,101,79,102,40,101,44,116,41,58,101,46,95,95,112,114,111,116,111,95,95,61,116,41,125,44,66,101,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,105,102,40,33,101,41,116,104,114,111,119,32,110,101,119,32,82,101,102,101,114,101,110,99,101,69,114,114,111,114,40,34,116,104,105,115,32,104,97,115,110,39,116,32,98,101,101,110,32,105,110,105,116,105,97,108,105,115,101,100,32,45,32,115,117,112,101,114,40,41,32,104,97,115,110,39,116,32,98,101,101,110,32,99,97,108,108,101,100,34,41,59,114,101,116,117,114,110,33,116,124,124,34,111,98,106,101,99,116,34,33,61,116,121,112,101,111,102,32,116,38,38,34,102,117,110,99,116,105,111,110,34,33,61,116,121,112,101,111,102,32,116,63,101,58,116,125,44,87,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,99,104,101,99,107,101,100,58,116,104,105,115,46,112,114,111,112,115,46,99,104,101,99,107,101,100,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,116,104,105,115,46,112,114,111,112,115,46,105,110,100,101,116,101,114,109,105,110,97,116,101,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,116,121,112,101,58,34,99,104,101,99,107,98,111,120,34,125,41,125,125,93,41,44,116,125,40,41,44,72,101,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,49,60,97,114,103,117,109,101,110,116,115,46,108,101,110,103,116,104,38,38,118,111,105,100,32,48,33,61,61,97,114,103,117,109,101,110,116,115,91,49,93,63,97,114,103,117,109,101,110,116,115,91,49,93,58,34,108,105,34,44,110,61,101,46,105,116,114,101,101,91,116,93,46,97,116,116,114,105,98,117,116,101,115,44,111,61,91,93,44,114,61,110,46,99,108,97,115,115,124,124,110,46,99,108,97,115,115,78,97,109,101,59,114,101,116,117,114,110,32,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,38,38,40,114,61,114,40,101,41,41,44,108,46,105,115,69,109,112,116,121,40,114,41,124,124,40,108,46,105,115,83,116,114,105,110,103,40,114,41,63,111,61,111,46,99,111,110,99,97,116,40,114,46,115,112,108,105,116,40,47,91,92,115,92,46,93,43,47,41,41,58,108,46,105,115,65,114,114,97,121,40,114,41,38,38,40,111,61,111,46,99,111,110,99,97,116,40,114,41,41,41,44,111,125,44,113,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,33,49,125,125,44,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,97,100,100,67,104,105,108,100,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,120,112,97,110,100,40,41,125,125,44,123,107,101,121,58,34,101,100,105,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,114,101,109,111,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,109,111,118,101,40,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,91,93,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,101,110,99,105,108,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,101,100,105,116,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,69,100,105,116,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,99,104,105,108,100,32,110,111,100,101,34,125,41,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,114,101,109,111,118,101,38,38,101,46,112,117,115,104,40,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,109,105,110,117,115,34,44,110,117,108,108,44,49,44,123,111,110,99,108,105,99,107,58,116,104,105,115,46,114,101,109,111,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,82,101,109,111,118,101,32,116,104,105,115,32,110,111,100,101,34,125,41,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,101,44,48,41,125,125,93,41,44,116,125,40,41,44,75,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,111,108,34,44,110,117,108,108,44,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,32,101,109,112,116,121,34,44,116,104,105,115,46,112,114,111,112,115,46,116,101,120,116,44,48,41,44,50,41,44,50,41,125,125,93,41,44,116,125,40,41,59,102,117,110,99,116,105,111,110,32,88,101,40,116,44,110,41,123,118,97,114,32,111,61,110,46,100,105,114,116,121,124,124,33,49,59,114,101,116,117,114,110,32,111,124,124,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,110,41,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,34,100,105,114,116,121,34,33,61,61,101,38,38,110,91,101,93,33,61,61,116,91,101,93,41,114,101,116,117,114,110,33,40,111,61,33,48,41,125,41,44,111,125,118,97,114,32,81,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,116,101,120,116,58,101,46,116,101,120,116,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,103,101,116,83,116,97,116,101,70,114,111,109,78,111,100,101,115,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,88,101,40,116,104,105,115,46,115,116,97,116,101,44,116,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,44,110,61,102,117,110,99,116,105,111,110,40,41,123,116,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,104,101,99,107,40,41,125,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,101,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,110,40,41,125,125,44,123,107,101,121,58,34,107,101,121,112,114,101,115,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,119,104,105,99,104,61,61,61,85,101,41,114,101,116,117,114,110,32,116,104,105,115,46,115,97,118,101,40,41,125,125,44,123,107,101,121,58,34,105,110,112,117,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,123,116,101,120,116,58,101,46,116,97,114,103,101,116,46,118,97,108,117,101,125,41,125,125,44,123,107,101,121,58,34,99,97,110,99,101,108,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,69,100,105,116,105,110,103,40,41,125,125,44,123,107,101,121,58,34,115,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,101,120,116,44,110,61,116,104,105,115,46,114,101,102,46,118,97,108,117,101,59,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,101,116,40,34,116,101,120,116,34,44,110,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,101,100,105,116,105,110,103,34,44,33,49,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,109,97,114,107,68,105,114,116,121,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,116,33,61,61,110,38,38,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,101,100,105,116,101,100,34,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,44,110,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,59,114,101,116,117,114,110,32,115,40,49,44,34,102,111,114,109,34,44,110,117,108,108,44,91,115,40,54,52,44,34,105,110,112,117,116,34,44,110,117,108,108,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,125,44,111,110,73,110,112,117,116,58,116,104,105,115,46,105,110,112,117,116,46,98,105,110,100,40,116,104,105,115,41,44,111,110,75,101,121,80,114,101,115,115,58,116,104,105,115,46,107,101,121,112,114,101,115,115,46,98,105,110,100,40,116,104,105,115,41,44,118,97,108,117,101,58,116,104,105,115,46,115,116,97,116,101,46,116,101,120,116,125,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,114,101,102,61,101,125,41,44,115,40,49,44,34,115,112,97,110,34,44,34,98,116,110,45,103,114,111,117,112,34,44,91,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,104,101,99,107,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,115,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,83,97,118,101,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,44,115,40,49,44,34,98,117,116,116,111,110,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,99,114,111,115,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,99,97,110,99,101,108,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,67,97,110,99,101,108,34,44,116,121,112,101,58,34,98,117,116,116,111,110,34,125,41,93,44,52,41,93,44,52,44,123,111,110,115,117,98,109,105,116,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,125,125,41,125,125,93,41,44,110,125,40,41,44,122,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,98,108,117,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,98,108,117,114,40,41,125,125,44,123,107,101,121,58,34,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,116,41,123,118,97,114,32,110,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,44,111,61,101,46,110,111,100,101,44,114,61,101,46,100,111,109,44,105,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,33,110,46,112,114,111,112,115,46,101,100,105,116,105,110,103,41,123,105,102,40,40,116,46,109,101,116,97,75,101,121,124,124,116,46,99,116,114,108,75,101,121,124,124,116,46,115,104,105,102,116,75,101,121,41,38,38,114,46,95,116,114,101,101,46,100,105,115,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,44,116,46,115,104,105,102,116,75,101,121,41,123,114,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,59,118,97,114,32,101,61,114,46,95,116,114,101,101,46,108,97,115,116,83,101,108,101,99,116,101,100,78,111,100,101,40,41,59,101,38,38,114,46,95,116,114,101,101,46,115,101,108,101,99,116,66,101,116,119,101,101,110,46,97,112,112,108,121,40,114,46,95,116,114,101,101,44,114,46,95,116,114,101,101,46,98,111,117,110,100,105,110,103,78,111,100,101,115,40,101,44,111,41,41,125,111,46,115,101,108,101,99,116,101,100,40,41,63,114,46,95,116,114,101,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,100,105,115,97,98,108,101,68,105,114,101,99,116,68,101,115,101,108,101,99,116,105,111,110,124,124,111,46,100,101,115,101,108,101,99,116,40,41,58,111,46,115,101,108,101,99,116,40,41,44,114,46,95,116,114,101,101,46,101,110,97,98,108,101,68,101,115,101,108,101,99,116,105,111,110,40,41,125,125,59,114,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,108,105,99,107,34,44,116,44,111,44,105,41,44,116,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,105,40,41,125,125,44,123,107,101,121,58,34,99,111,110,116,101,120,116,77,101,110,117,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,59,116,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,99,111,110,116,101,120,116,109,101,110,117,34,44,101,44,110,41,125,125,44,123,107,101,121,58,34,100,98,108,99,108,105,99,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,44,110,61,116,46,110,111,100,101,44,111,61,116,46,100,111,109,44,114,61,102,117,110,99,116,105,111,110,40,41,123,111,46,99,108,101,97,114,83,101,108,101,99,116,105,111,110,40,41,44,110,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,40,41,125,59,111,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,98,108,99,108,105,99,107,34,44,101,44,110,44,114,41,44,101,46,116,114,101,101,68,101,102,97,117,108,116,80,114,101,118,101,110,116,101,100,124,124,114,40,41,125,125,44,123,107,101,121,58,34,102,111,99,117,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,102,111,99,117,115,40,101,41,125,125,44,123,107,101,121,58,34,109,111,117,115,101,100,111,119,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,114,97,103,68,114,111,112,69,110,97,98,108,101,100,38,38,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,77,111,117,115,101,72,101,108,100,61,33,48,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,97,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,116,46,116,97,98,105,110,100,101,120,61,49,44,116,46,117,110,115,101,108,101,99,116,97,98,108,101,61,34,111,110,34,59,118,97,114,32,110,61,72,101,40,101,44,34,97,34,41,46,99,111,110,99,97,116,40,91,34,116,105,116,108,101,34,44,34,105,99,111,110,34,93,41,59,105,102,40,33,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,101,120,112,97,110,100,101,100,63,34,105,99,111,110,45,102,111,108,100,101,114,45,111,112,101,110,34,58,34,105,99,111,110,45,102,111,108,100,101,114,34,59,110,46,112,117,115,104,40,101,46,105,116,114,101,101,46,105,99,111,110,124,124,40,116,104,105,115,46,112,114,111,112,115,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,63,111,58,34,105,99,111,110,45,102,105,108,101,45,101,109,112,116,121,34,41,41,125,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,59,118,97,114,32,114,61,101,46,116,101,120,116,59,114,101,116,117,114,110,32,101,46,101,100,105,116,105,110,103,40,41,38,38,40,114,61,100,40,50,44,81,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,41,44,99,40,115,40,49,44,34,97,34,44,110,117,108,108,44,114,44,48,44,82,101,40,123,34,100,97,116,97,45,117,105,100,34,58,101,46,105,100,44,111,110,66,108,117,114,58,116,104,105,115,46,98,108,117,114,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,108,105,99,107,58,116,104,105,115,46,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,67,111,110,116,101,120,116,77,101,110,117,58,116,104,105,115,46,99,111,110,116,101,120,116,77,101,110,117,46,98,105,110,100,40,116,104,105,115,41,44,111,110,68,98,108,67,108,105,99,107,58,116,104,105,115,46,100,98,108,99,108,105,99,107,46,98,105,110,100,40,116,104,105,115,41,44,111,110,70,111,99,117,115,58,116,104,105,115,46,102,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,44,111,110,77,111,117,115,101,68,111,119,110,58,116,104,105,115,46,109,111,117,115,101,100,111,119,110,46,98,105,110,100,40,116,104,105,115,41,125,44,116,41,41,41,125,125,93,41,44,116,125,40,41,44,71,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,99,108,97,115,115,78,97,109,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,34,116,111,103,103,108,101,32,105,99,111,110,32,34,43,40,116,104,105,115,46,112,114,111,112,115,46,99,111,108,108,97,112,115,101,100,63,34,105,99,111,110,45,101,120,112,97,110,100,34,58,34,105,99,111,110,45,99,111,108,108,97,112,115,101,34,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,97,34,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,40,41,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,116,111,103,103,108,101,67,111,108,108,97,112,115,101,46,98,105,110,100,40,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,125,41,125,125,93,41,44,116,125,40,41,44,89,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,110,40,101,41,123,65,101,40,116,104,105,115,44,110,41,59,118,97,114,32,116,61,66,101,40,116,104,105,115,44,40,110,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,110,41,41,46,99,97,108,108,40,116,104,105,115,44,101,41,41,59,114,101,116,117,114,110,32,116,46,115,116,97,116,101,61,116,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,44,116,125,114,101,116,117,114,110,32,106,101,40,110,44,76,101,41,44,86,101,40,110,44,91,123,107,101,121,58,34,115,116,97,116,101,70,114,111,109,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,123,100,105,114,116,121,58,101,46,105,116,114,101,101,46,100,105,114,116,121,125,125,125,44,123,107,101,121,58,34,99,111,109,112,111,110,101,110,116,87,105,108,108,82,101,99,101,105,118,101,80,114,111,112,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,116,104,105,115,46,115,101,116,83,116,97,116,101,40,116,104,105,115,46,115,116,97,116,101,70,114,111,109,78,111,100,101,40,101,46,110,111,100,101,41,41,125,125,44,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,114,101,116,117,114,110,32,116,46,100,105,114,116,121,125,125,44,123,107,101,121,58,34,103,101,116,65,116,116,114,105,98,117,116,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,108,46,99,108,111,110,101,40,101,46,105,116,114,101,101,46,108,105,46,97,116,116,114,105,98,117,116,101,115,41,124,124,123,125,59,114,101,116,117,114,110,32,116,46,99,108,97,115,115,61,116,46,99,108,97,115,115,78,97,109,101,61,116,104,105,115,46,103,101,116,67,108,97,115,115,78,97,109,101,115,40,41,44,116,91,34,100,97,116,97,45,117,105,100,34,93,61,101,46,105,100,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,46,100,114,97,103,103,97,98,108,101,61,101,46,115,116,97,116,101,40,34,100,114,97,103,103,97,98,108,101,34,41,44,116,46,111,110,68,114,97,103,69,110,100,61,116,104,105,115,46,111,110,68,114,97,103,69,110,100,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,69,110,116,101,114,61,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,76,101,97,118,101,61,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,97,103,83,116,97,114,116,61,116,104,105,115,46,111,110,68,114,97,103,83,116,97,114,116,46,98,105,110,100,40,116,104,105,115,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,41,63,40,116,46,111,110,68,114,97,103,79,118,101,114,61,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,116,46,111,110,68,114,111,112,61,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,41,58,40,116,46,111,110,68,114,97,103,79,118,101,114,61,110,117,108,108,44,116,46,111,110,68,114,111,112,61,110,117,108,108,41,41,44,116,125,125,44,123,107,101,121,58,34,103,101,116,67,108,97,115,115,78,97,109,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,116,61,101,46,105,116,114,101,101,46,115,116,97,116,101,44,110,61,72,101,40,101,41,59,114,101,116,117,114,110,32,108,46,101,97,99,104,40,79,98,106,101,99,116,46,107,101,121,115,40,116,41,44,102,117,110,99,116,105,111,110,40,101,41,123,116,91,101,93,38,38,110,46,112,117,115,104,40,101,41,125,41,44,33,101,46,104,105,100,100,101,110,40,41,38,38,101,46,114,101,109,111,118,101,100,40,41,38,38,110,46,112,117,115,104,40,34,104,105,100,100,101,110,34,41,44,101,46,101,120,112,97,110,100,101,100,40,41,38,38,110,46,112,117,115,104,40,34,101,120,112,97,110,100,101,100,34,41,44,110,46,112,117,115,104,40,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,63,34,102,111,108,100,101,114,34,58,34,108,101,97,102,34,41,44,110,46,106,111,105,110,40,34,32,34,41,125,125,44,123,107,101,121,58,34,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,110,61,101,46,99,108,105,101,110,116,89,44,111,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,114,61,111,46,116,111,112,43,111,46,104,101,105,103,104,116,47,51,44,105,61,111,46,98,111,116,116,111,109,45,111,46,104,101,105,103,104,116,47,51,44,97,61,48,59,114,101,116,117,114,110,32,110,60,61,114,63,97,61,45,49,58,105,60,61,110,38,38,40,97,61,49,41,44,97,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,83,116,97,114,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,101,102,102,101,99,116,65,108,108,111,119,101,100,61,34,109,111,118,101,34,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,100,114,111,112,69,102,102,101,99,116,61,34,109,111,118,101,34,59,118,97,114,32,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,44,110,46,116,114,101,101,40,41,46,105,100,41,44,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,115,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,44,110,46,105,100,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,110,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,110,46,99,104,105,108,100,114,101,110,46,115,116,97,116,101,68,101,101,112,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,49,41,44,34,100,114,97,103,115,116,97,114,116,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,111,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,114,61,108,46,105,115,70,117,110,99,116,105,111,110,40,111,41,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,102,117,110,99,116,105,111,110,32,116,40,101,44,110,41,123,105,46,105,115,84,114,101,101,78,111,100,101,115,40,101,41,63,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,116,40,101,44,110,41,125,41,58,105,46,105,115,84,114,101,101,78,111,100,101,40,101,41,38,38,33,49,33,61,61,110,40,101,41,38,38,101,46,104,97,115,67,104,105,108,100,114,101,110,40,41,38,38,116,40,101,46,99,104,105,108,100,114,101,110,44,110,41,125,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,109,111,100,101,108,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,100,33,61,61,110,46,105,100,59,114,101,116,117,114,110,32,116,38,38,40,116,61,33,101,46,104,97,115,65,110,99,101,115,116,111,114,40,110,41,41,44,116,38,38,114,38,38,40,116,61,111,40,110,44,101,41,41,44,101,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,116,41,44,116,125,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,115,116,97,114,116,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,100,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,114,101,99,117,114,115,101,85,112,40,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,101,110,116,101,114,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,108,101,97,118,101,34,44,101,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,59,118,97,114,32,116,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,44,110,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,111,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,110,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,97,34,41,41,59,105,102,40,34,100,114,97,103,111,118,101,114,34,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,79,110,41,123,118,97,114,32,114,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,118,97,108,105,100,97,116,101,44,105,61,108,46,105,115,70,117,110,99,116,105,111,110,40,114,41,44,97,61,116,46,105,100,33,61,61,110,46,105,100,59,105,102,40,97,38,38,40,97,61,33,110,46,104,97,115,65,110,99,101,115,116,111,114,40,116,41,41,44,97,38,38,105,38,38,40,97,61,114,40,116,44,110,44,111,41,41,44,110,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,97,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,112,112,108,121,67,104,97,110,103,101,115,40,41,44,33,97,41,114,101,116,117,114,110,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,98,97,116,99,104,40,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,33,48,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,45,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,49,61,61,61,111,41,44,110,46,115,116,97,116,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,44,48,61,61,61,111,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,110,100,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,97,103,111,118,101,114,34,44,101,44,111,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,97,99,116,105,118,101,68,114,97,103,78,111,100,101,61,110,117,108,108,59,118,97,114,32,114,61,116,104,105,115,46,103,101,116,84,97,114,103,101,116,68,105,114,101,99,116,105,111,110,40,101,44,101,46,116,97,114,103,101,116,41,44,105,61,118,111,105,100,32,48,59,116,61,61,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,105,100,63,105,61,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,58,116,38,38,40,105,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,116,43,39,34,93,39,41,46,105,110,115,112,105,114,101,84,114,101,101,41,59,118,97,114,32,97,61,118,111,105,100,32,48,44,115,61,118,111,105,100,32,48,59,105,102,40,105,41,123,118,97,114,32,108,61,105,46,110,111,100,101,40,110,41,59,108,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,100,61,108,46,114,101,109,111,118,101,40,33,48,41,44,99,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,100,101,120,79,102,40,111,41,59,48,61,61,61,114,63,40,97,61,111,46,97,100,100,67,104,105,108,100,40,100,41,44,115,61,111,46,99,104,105,108,100,114,101,110,46,105,110,100,101,120,79,102,40,97,41,44,111,46,101,120,112,97,110,100,40,41,41,58,40,115,61,49,61,61,61,114,63,43,43,99,58,99,44,97,61,111,46,99,111,110,116,101,120,116,40,41,46,105,110,115,101,114,116,65,116,40,115,44,100,41,41,125,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,97,44,111,44,115,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,40,101,124,124,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,41,46,115,116,97,116,101,115,40,91,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,97,98,111,118,101,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,98,101,108,111,119,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,93,44,33,49,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,101,99,107,98,111,120,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,41,114,101,116,117,114,110,32,100,40,50,44,87,101,44,123,99,104,101,99,107,101,100,58,101,46,99,104,101,99,107,101,100,40,41,44,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,105,110,100,101,116,101,114,109,105,110,97,116,101,58,101,46,105,110,100,101,116,101,114,109,105,110,97,116,101,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,67,104,105,108,100,114,101,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,110,111,100,101,44,110,61,101,46,100,111,109,59,105,102,40,116,46,104,97,115,67,104,105,108,100,114,101,110,40,41,41,123,118,97,114,32,111,61,116,46,99,104,105,108,100,114,101,110,44,114,61,110,46,108,111,97,100,105,110,103,44,105,61,111,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,99,111,110,116,101,120,116,58,116,44,100,111,109,58,110,44,108,105,109,105,116,58,105,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,114,44,110,111,100,101,115,58,111,44,116,111,116,97,108,58,105,46,116,111,116,97,108,125,41,125,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,38,38,116,46,99,104,105,108,100,114,101,110,41,114,101,116,117,114,110,32,116,46,104,97,115,76,111,97,100,101,100,67,104,105,108,100,114,101,110,40,41,63,100,40,50,44,75,101,44,123,116,101,120,116,58,34,78,111,32,82,101,115,117,108,116,115,34,125,41,58,100,40,50,44,75,101,44,123,116,101,120,116,58,34,76,111,97,100,105,110,103,46,46,46,34,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,101,100,105,116,38,38,33,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,101,100,105,116,105,110,103,40,41,41,114,101,116,117,114,110,32,100,40,50,44,113,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,84,111,103,103,108,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,105,115,68,121,110,97,109,105,99,63,66,111,111,108,101,97,110,40,101,46,99,104,105,108,100,114,101,110,41,58,101,46,104,97,115,86,105,115,105,98,108,101,67,104,105,108,100,114,101,110,40,41,41,114,101,116,117,114,110,32,100,40,50,44,71,101,44,123,99,111,108,108,97,112,115,101,100,58,101,46,99,111,108,108,97,112,115,101,100,40,41,44,110,111,100,101,58,101,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,44,110,61,99,40,115,40,49,44,34,108,105,34,44,110,117,108,108,44,91,116,104,105,115,46,114,101,110,100,101,114,69,100,105,116,84,111,111,108,98,97,114,40,41,44,115,40,49,44,34,100,105,118,34,44,34,116,105,116,108,101,45,119,114,97,112,34,44,91,116,104,105,115,46,114,101,110,100,101,114,84,111,103,103,108,101,40,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,101,99,107,98,111,120,40,41,44,100,40,50,44,122,101,44,123,100,111,109,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,44,101,100,105,116,105,110,103,58,101,46,101,100,105,116,105,110,103,40,41,44,101,120,112,97,110,100,101,100,58,101,46,101,120,112,97,110,100,101,100,40,41,44,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,58,101,46,104,97,115,79,114,87,105,108,108,72,97,118,101,67,104,105,108,100,114,101,110,40,41,44,110,111,100,101,58,101,44,116,101,120,116,58,101,46,116,101,120,116,125,41,93,44,48,41,44,115,40,49,44,34,100,105,118,34,44,34,119,104,111,108,101,114,111,119,34,41,44,116,104,105,115,46,114,101,110,100,101,114,67,104,105,108,100,114,101,110,40,41,93,44,48,44,82,101,40,123,125,44,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,115,40,41,41,44,110,117,108,108,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,116,46,110,111,100,101,61,116,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,114,101,102,61,101,125,41,41,59,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,115,116,97,116,101,40,34,114,101,110,100,101,114,101,100,34,44,33,48,41,44,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,46,105,116,114,101,101,46,100,105,114,116,121,61,33,49,44,110,125,125,93,41,44,110,125,40,41,44,74,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,115,104,111,117,108,100,67,111,109,112,111,110,101,110,116,85,112,100,97,116,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,108,46,102,105,110,100,40,101,46,110,111,100,101,115,44,34,105,116,114,101,101,46,100,105,114,116,121,34,41,124,124,88,101,40,116,104,105,115,46,112,114,111,112,115,44,101,41,125,125,44,123,107,101,121,58,34,105,115,68,101,102,101,114,114,101,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,125,125,44,123,107,101,121,58,34,108,111,97,100,77,111,114,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,63,116,104,105,115,46,112,114,111,112,115,46,99,111,110,116,101,120,116,46,108,111,97,100,77,111,114,101,40,101,41,58,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,101,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,32,100,101,116,97,99,104,101,100,34,44,115,40,49,44,34,97,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,32,108,111,97,100,45,109,111,114,101,34,44,36,40,34,76,111,97,100,32,77,111,114,101,34,41,44,50,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,108,111,97,100,77,111,114,101,46,98,105,110,100,40,116,104,105,115,41,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,34,108,101,97,102,34,44,115,40,49,44,34,115,112,97,110,34,44,34,116,105,116,108,101,32,105,99,111,110,32,105,99,111,110,45,109,111,114,101,34,44,36,40,34,76,111,97,100,105,110,103,46,46,46,34,41,44,50,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,116,61,116,104,105,115,44,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,44,110,61,101,46,112,97,103,105,110,97,116,105,111,110,40,41,59,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,41,123,118,97,114,32,111,61,48,59,101,61,116,104,105,115,46,112,114,111,112,115,46,110,111,100,101,115,46,102,105,108,116,101,114,40,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,33,40,101,46,104,105,100,100,101,110,40,41,124,124,101,46,114,101,109,111,118,101,100,40,41,41,59,114,101,116,117,114,110,32,116,38,38,111,43,43,44,111,60,61,110,46,108,105,109,105,116,38,38,116,125,41,125,118,97,114,32,114,61,108,46,109,97,112,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,114,101,116,117,114,110,32,100,40,50,44,89,101,44,123,100,111,109,58,116,46,112,114,111,112,115,46,100,111,109,44,110,111,100,101,58,101,125,44,101,46,105,100,41,125,41,59,114,101,116,117,114,110,32,116,104,105,115,46,105,115,68,101,102,101,114,114,101,100,40,41,38,38,110,46,108,105,109,105,116,60,110,46,116,111,116,97,108,38,38,40,116,104,105,115,46,112,114,111,112,115,46,108,111,97,100,105,110,103,63,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,105,110,103,84,101,120,116,78,111,100,101,40,41,41,58,114,46,112,117,115,104,40,116,104,105,115,46,114,101,110,100,101,114,76,111,97,100,77,111,114,101,78,111,100,101,40,41,41,41,44,115,40,49,44,34,111,108,34,44,110,117,108,108,44,91,114,44,116,104,105,115,46,112,114,111,112,115,46,99,104,105,108,100,114,101,110,93,44,48,41,125,125,93,41,44,116,125,40,41,44,90,101,61,102,117,110,99,116,105,111,110,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,41,123,114,101,116,117,114,110,32,65,101,40,116,104,105,115,44,116,41,44,66,101,40,116,104,105,115,44,40,116,46,95,95,112,114,111,116,111,95,95,124,124,79,98,106,101,99,116,46,103,101,116,80,114,111,116,111,116,121,112,101,79,102,40,116,41,41,46,97,112,112,108,121,40,116,104,105,115,44,97,114,103,117,109,101,110,116,115,41,41,125,114,101,116,117,114,110,32,106,101,40,116,44,76,101,41,44,86,101,40,116,44,91,123,107,101,121,58,34,97,100,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,46,98,108,117,114,40,41,44,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,123,116,101,120,116,58,34,78,101,119,32,78,111,100,101,34,44,105,116,114,101,101,58,123,115,116,97,116,101,58,123,101,100,105,116,105,110,103,58,33,48,44,102,111,99,117,115,101,100,58,33,48,125,125,125,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,65,100,100,76,105,110,107,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,112,114,111,112,115,46,100,111,109,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,46,97,100,100,41,114,101,116,117,114,110,32,115,40,49,44,34,108,105,34,44,110,117,108,108,44,115,40,49,44,34,97,34,44,34,98,116,110,32,105,99,111,110,32,105,99,111,110,45,112,108,117,115,34,44,110,117,108,108,44,49,44,123,111,110,67,108,105,99,107,58,116,104,105,115,46,97,100,100,46,98,105,110,100,40,116,104,105,115,41,44,116,105,116,108,101,58,34,65,100,100,32,97,32,110,101,119,32,114,111,111,116,32,110,111,100,101,34,125,41,44,50,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,112,114,111,112,115,44,116,61,101,46,100,111,109,44,110,61,101,46,110,111,100,101,115,44,111,61,116,46,108,111,97,100,105,110,103,44,114,61,110,46,112,97,103,105,110,97,116,105,111,110,40,41,59,114,101,116,117,114,110,32,100,40,50,44,74,101,44,123,100,111,109,58,116,44,108,105,109,105,116,58,114,46,108,105,109,105,116,44,108,111,97,100,105,110,103,58,111,44,110,111,100,101,115,58,110,44,116,111,116,97,108,58,114,46,116,111,116,97,108,44,99,104,105,108,100,114,101,110,58,116,104,105,115,46,114,101,110,100,101,114,65,100,100,76,105,110,107,40,41,125,41,125,125,93,41,44,116,125,40,41,59,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,115,40,101,44,116,41,123,118,97,114,32,110,61,116,104,105,115,59,105,102,40,65,101,40,116,104,105,115,44,115,41,44,33,40,101,32,105,110,115,116,97,110,99,101,111,102,32,105,41,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,84,114,101,101,32,97,114,103,117,109,101,110,116,32,105,115,32,110,111,116,32,97,110,32,73,110,115,112,105,114,101,84,114,101,101,32,105,110,115,116,97,110,99,101,46,34,41,59,105,102,40,116,104,105,115,46,95,116,114,101,101,61,101,44,116,104,105,115,46,98,97,116,99,104,105,110,103,61,48,44,116,104,105,115,46,100,114,111,112,84,97,114,103,101,116,115,61,91,93,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,44,33,116,46,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,34,73,110,118,97,108,105,100,32,96,116,97,114,103,101,116,96,32,112,114,111,112,101,114,116,121,32,45,32,109,117,115,116,32,98,101,32,97,32,115,101,108,101,99,116,111,114,44,32,72,84,77,76,69,108,101,109,101,110,116,44,32,111,114,32,106,81,117,101,114,121,32,101,108,101,109,101,110,116,46,34,41,59,118,97,114,32,111,61,123,101,110,97,98,108,101,100,58,33,40,101,46,117,115,101,115,78,97,116,105,118,101,68,79,77,61,33,48,41,44,118,97,108,105,100,97,116,101,79,110,58,34,100,114,97,103,115,116,97,114,116,34,44,118,97,108,105,100,97,116,101,58,110,117,108,108,125,59,116,104,105,115,46,99,111,110,102,105,103,61,108,46,100,101,102,97,117,108,116,115,68,101,101,112,40,123,125,44,116,44,123,97,117,116,111,76,111,97,100,77,111,114,101,58,33,48,44,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,58,33,49,44,100,114,97,103,65,110,100,68,114,111,112,58,111,44,110,111,100,101,72,101,105,103,104,116,58,50,53,44,115,104,111,119,67,104,101,99,107,98,111,120,101,115,58,33,49,44,116,97,98,105,110,100,101,120,58,45,49,44,116,97,114,103,101,116,58,33,49,125,41,44,33,48,61,61,61,116,46,100,114,97,103,65,110,100,68,114,111,112,38,38,40,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,61,111,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,61,33,48,41,44,34,99,104,101,99,107,98,111,120,34,33,61,61,101,46,99,111,110,102,105,103,46,115,101,108,101,99,116,105,111,110,46,109,111,100,101,124,124,108,46,105,115,66,111,111,108,101,97,110,40,108,46,103,101,116,40,116,44,34,115,104,111,119,67,104,101,99,107,98,111,120,101,115,34,41,41,124,124,40,116,104,105,115,46,99,111,110,102,105,103,46,115,104,111,119,67,104,101,99,107,98,111,120,101,115,61,33,48,41,44,116,104,105,115,46,105,115,68,121,110,97,109,105,99,61,108,46,105,115,70,117,110,99,116,105,111,110,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,97,116,97,41,44,116,104,105,115,46,97,116,116,97,99,104,40,116,104,105,115,46,99,111,110,102,105,103,46,116,97,114,103,101,116,41,59,118,97,114,32,114,61,33,48,59,101,46,111,110,40,34,99,104,97,110,103,101,115,46,97,112,112,108,105,101,100,34,44,102,117,110,99,116,105,111,110,40,41,123,110,46,114,101,110,100,101,114,78,111,100,101,115,40,41,44,114,38,38,40,110,46,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,40,41,44,114,61,33,49,41,125,41,44,116,104,105,115,46,114,101,110,100,101,114,78,111,100,101,115,40,41,125,114,101,116,117,114,110,32,86,101,40,115,44,91,123,107,101,121,58,34,97,116,116,97,99,104,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,104,105,115,46,36,116,97,114,103,101,116,61,116,104,105,115,46,103,101,116,69,108,101,109,101,110,116,40,101,41,44,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,116,104,105,115,46,36,116,97,114,103,101,116,41,44,33,116,104,105,115,46,36,116,97,114,103,101,116,41,116,104,114,111,119,32,110,101,119,32,69,114,114,111,114,40,34,78,111,32,118,97,108,105,100,32,101,108,101,109,101,110,116,32,116,111,32,97,116,116,97,99,104,32,116,111,46,34,41,59,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,44,116,104,105,115,46,95,116,114,101,101,46,105,100,41,59,118,97,114,32,110,61,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,46,115,112,108,105,116,40,34,32,34,41,59,105,102,40,110,46,112,117,115,104,40,34,105,110,115,112,105,114,101,45,116,114,101,101,34,41,44,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,97,98,108,101,38,38,40,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,34,41,44,108,46,101,97,99,104,40,108,46,112,105,99,107,66,121,40,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,101,100,105,116,105,110,103,44,108,46,105,100,101,110,116,105,116,121,41,44,102,117,110,99,116,105,111,110,40,101,44,116,41,123,110,46,112,117,115,104,40,34,101,100,105,116,97,98,108,101,45,34,43,116,41,125,41,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,78,97,109,101,61,110,46,106,111,105,110,40,34,32,34,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,98,105,110,100,101,120,34,44,116,104,105,115,46,99,111,110,102,105,103,46,116,97,98,105,110,100,101,120,124,124,48,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,100,111,119,110,34,44,116,104,105,115,46,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,114,97,103,65,110,100,68,114,111,112,46,101,110,97,98,108,101,100,38,38,40,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,101,110,116,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,69,110,116,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,108,101,97,118,101,34,44,116,104,105,115,46,111,110,68,114,97,103,76,101,97,118,101,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,97,103,111,118,101,114,34,44,116,104,105,115,46,111,110,68,114,97,103,79,118,101,114,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,114,111,112,34,44,116,104,105,115,46,111,110,68,114,111,112,46,98,105,110,100,40,116,104,105,115,41,44,33,49,41,44,116,104,105,115,46,36,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,97,110,100,45,100,114,111,112,34,41,41,44,116,104,105,115,46,95,116,114,101,101,46,111,110,40,34,110,111,100,101,46,102,111,99,117,115,101,100,34,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,105,116,114,101,101,46,114,101,102,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,116,105,116,108,101,34,41,59,116,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,116,46,102,111,99,117,115,40,41,125,41,44,116,104,105,115,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,82,101,110,100,101,114,105,110,103,124,124,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,100,101,102,101,114,114,101,100,76,111,97,100,105,110,103,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,59,116,104,105,115,46,95,116,114,101,101,46,99,111,110,102,105,103,46,112,97,103,105,110,97,116,105,111,110,46,108,105,109,105,116,61,48,60,116,63,116,58,108,46,99,101,105,108,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,99,108,105,101,110,116,72,101,105,103,104,116,47,116,104,105,115,46,99,111,110,102,105,103,46,110,111,100,101,72,101,105,103,104,116,41,44,116,104,105,115,46,99,111,110,102,105,103,46,97,117,116,111,76,111,97,100,77,111,114,101,38,38,116,104,105,115,46,36,116,97,114,103,101,116,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,108,46,116,104,114,111,116,116,108,101,40,116,104,105,115,46,115,99,114,111,108,108,76,105,115,116,101,110,101,114,46,98,105,110,100,40,116,104,105,115,41,44,50,48,41,41,125,116,104,105,115,46,36,116,97,114,103,101,116,46,105,110,115,112,105,114,101,84,114,101,101,61,116,104,105,115,46,95,116,114,101,101,125,125,44,123,107,101,121,58,34,99,108,101,97,114,83,101,108,101,99,116,105,111,110,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,38,38,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,63,100,111,99,117,109,101,110,116,46,115,101,108,101,99,116,105,111,110,46,101,109,112,116,121,40,41,58,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,38,38,119,105,110,100,111,119,46,103,101,116,83,101,108,101,99,116,105,111,110,40,41,46,114,101,109,111,118,101,65,108,108,82,97,110,103,101,115,40,41,125,125,44,123,107,101,121,58,34,103,101,116,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,118,111,105,100,32,48,59,105,102,40,101,32,105,110,115,116,97,110,99,101,111,102,32,72,84,77,76,69,108,101,109,101,110,116,41,116,61,101,59,101,108,115,101,32,105,102,40,108,46,105,115,79,98,106,101,99,116,40,101,41,38,38,108,46,105,115,79,98,106,101,99,116,40,101,91,48,93,41,41,116,61,101,91,48,93,59,101,108,115,101,32,105,102,40,108,46,105,115,83,116,114,105,110,103,40,101,41,41,123,118,97,114,32,110,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,101,41,59,110,38,38,40,116,61,110,41,125,114,101,116,117,114,110,32,116,125,125,44,123,107,101,121,58,34,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,32,105,110,115,116,97,110,99,101,111,102,32,69,108,101,109,101,110,116,38,38,40,34,97,117,116,111,34,33,61,61,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,101,41,46,111,118,101,114,102,108,111,119,38,38,101,46,112,97,114,101,110,116,78,111,100,101,38,38,40,101,61,116,104,105,115,46,103,101,116,83,99,114,111,108,108,97,98,108,101,65,110,99,101,115,116,111,114,40,101,46,112,97,114,101,110,116,78,111,100,101,41,41,41,59,114,101,116,117,114,110,32,101,125,125,44,123,107,101,121,58,34,107,101,121,98,111,97,114,100,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,101,46,115,116,111,112,80,114,111,112,97,103,97,116,105,111,110,40,41,44,33,40,91,73,101,44,85,101,44,77,101,44,70,101,44,69,101,93,46,105,110,100,101,120,79,102,40,101,46,119,104,105,99,104,41,60,48,41,41,123,118,97,114,32,116,61,116,104,105,115,46,95,116,114,101,101,46,102,111,99,117,115,101,100,40,41,59,105,102,40,116,46,108,101,110,103,116,104,41,115,119,105,116,99,104,40,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,119,104,105,99,104,41,123,99,97,115,101,32,73,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,40,116,91,48,93,41,59,98,114,101,97,107,59,99,97,115,101,32,85,101,58,116,91,48,93,46,116,111,103,103,108,101,83,101,108,101,99,116,40,41,59,98,114,101,97,107,59,99,97,115,101,32,77,101,58,116,91,48,93,46,99,111,108,108,97,112,115,101,40,41,59,98,114,101,97,107,59,99,97,115,101,32,70,101,58,116,91,48,93,46,101,120,112,97,110,100,40,41,59,98,114,101,97,107,59,99,97,115,101,32,69,101,58,116,104,105,115,46,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,40,116,91,48,93,41,125,125,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,68,111,119,110,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,110,101,120,116,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,109,111,118,101,70,111,99,117,115,85,112,70,114,111,109,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,114,101,118,105,111,117,115,86,105,115,105,98,108,101,78,111,100,101,40,41,59,116,38,38,116,46,102,111,99,117,115,40,41,125,125,44,123,107,101,121,58,34,110,111,100,101,70,114,111,109,84,105,116,108,101,68,79,77,69,108,101,109,101,110,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,59,114,101,116,117,114,110,32,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,40,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,69,110,116,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,101,46,116,97,114,103,101,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,76,101,97,118,101,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,111,110,68,114,97,103,79,118,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,125,125,44,123,107,101,121,58,34,111,110,68,114,111,112,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,40,101,46,116,97,114,103,101,116,41,59,118,97,114,32,116,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,116,114,101,101,73,100,34,41,44,110,61,101,46,100,97,116,97,84,114,97,110,115,102,101,114,46,103,101,116,68,97,116,97,40,34,110,111,100,101,73,100,34,41,44,111,61,115,46,103,101,116,84,114,101,101,66,121,73,100,40,116,41,46,110,111,100,101,40,110,41,59,111,46,115,116,97,116,101,40,34,100,114,111,112,45,116,97,114,103,101,116,34,44,33,48,41,59,118,97,114,32,114,61,111,46,114,101,109,111,118,101,40,33,48,41,44,105,61,116,104,105,115,46,95,116,114,101,101,46,97,100,100,78,111,100,101,40,114,41,44,97,61,116,104,105,115,46,95,116,114,101,101,46,105,110,100,101,120,79,102,40,105,41,59,116,104,105,115,46,95,116,114,101,101,46,101,109,105,116,40,34,110,111,100,101,46,100,114,111,112,34,44,101,44,105,44,110,117,108,108,44,97,41,125,125,44,123,107,101,121,58,34,114,101,110,100,101,114,78,111,100,101,115,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,114,40,100,40,50,44,90,101,44,123,100,111,109,58,116,104,105,115,44,110,111,100,101,115,58,101,124,124,116,104,105,115,46,95,116,114,101,101,46,110,111,100,101,115,40,41,125,41,44,116,104,105,115,46,36,116,97,114,103,101,116,41,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,76,105,115,116,101,110,101,114,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,114,41,123,118,97,114,32,105,61,116,104,105,115,59,105,102,40,33,116,104,105,115,46,114,101,110,100,101,114,105,110,103,38,38,33,116,104,105,115,46,108,111,97,100,105,110,103,41,123,118,97,114,32,97,61,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,44,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,34,46,108,111,97,100,45,109,111,114,101,34,41,59,108,46,101,97,99,104,40,101,44,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,101,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,33,40,97,46,114,105,103,104,116,60,116,46,108,101,102,116,124,124,97,46,108,101,102,116,62,116,46,114,105,103,104,116,124,124,97,46,98,111,116,116,111,109,60,116,46,116,111,112,124,124,97,46,116,111,112,62,116,46,98,111,116,116,111,109,41,41,123,118,97,114,32,110,61,118,111,105,100,32,48,44,111,61,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,46,112,97,114,101,110,116,78,111,100,101,59,34,76,73,34,61,61,61,111,46,116,97,103,78,97,109,101,38,38,40,110,61,105,46,95,116,114,101,101,46,110,111,100,101,40,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,117,105,100,34,41,41,41,44,105,46,95,116,114,101,101,46,108,111,97,100,77,111,114,101,40,110,44,114,41,125,125,41,125,125,125,44,123,107,101,121,58,34,115,99,114,111,108,108,83,101,108,101,99,116,101,100,73,110,116,111,86,105,101,119,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,116,104,105,115,46,36,116,97,114,103,101,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,38,38,40,116,104,105,115,46,36,115,99,114,111,108,108,76,97,121,101,114,46,115,99,114,111,108,108,84,111,112,61,101,46,111,102,102,115,101,116,84,111,112,41,125,125,44,123,107,101,121,58,34,117,110,104,105,103,104,108,105,103,104,116,84,97,114,103,101,116,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,101,38,38,101,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,34,44,34,100,114,97,103,45,116,97,114,103,101,116,105,110,103,45,105,110,115,101,114,116,34,41,125,125,93,44,91,123,107,101,121,58,34,103,101,116,84,114,101,101,66,121,73,100,34,44,118,97,108,117,101,58,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,39,91,100,97,116,97,45,117,105,100,61,34,39,43,101,43,39,34,93,39,41,59,105,102,40,116,41,114,101,116,117,114,110,32,116,46,105,110,115,112,105,114,101,84,114,101,101,125,125,93,41,44,115,125,40,41,125,41,59,59,10,10,47,47,32,74,97,118,97,83,99,114,105,112,116,32,97,117,116,111,67,111,109,112,108,101,116,101,32,118,49,46,48,46,52,10,47,47,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,80,105,120,97,98,97,121,47,74,97,118,97,83,99,114,105,112,116,45,97,117,116,111,67,111,109,112,108,101,116,101,10,118,97,114,32,97,117,116,111,67,111,109,112,108,101,116,101,61,102,117,110,99,116,105,111,110,40,41,123,102,117,110,99,116,105,111,110,32,101,40,101,41,123,102,117,110,99,116,105,111,110,32,116,40,101,44,116,41,123,114,101,116,117,114,110,32,101,46,99,108,97,115,115,76,105,115,116,63,101,46,99,108,97,115,115,76,105,115,116,46,99,111,110,116,97,105,110,115,40,116,41,58,110,101,119,32,82,101,103,69,120,112,40,34,92,92,98,34,43,116,43,34,92,92,98,34,41,46,116,101,115,116,40,101,46,99,108,97,115,115,78,97,109,101,41,125,102,117,110,99,116,105,111,110,32,111,40,101,44,116,44,111,41,123,101,46,97,116,116,97,99,104,69,118,101,110,116,63,101,46,97,116,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,115,40,101,44,116,44,111,41,123,101,46,100,101,116,97,99,104,69,118,101,110,116,63,101,46,100,101,116,97,99,104,69,118,101,110,116,40,34,111,110,34,43,116,44,111,41,58,101,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,116,44,111,41,125,102,117,110,99,116,105,111,110,32,110,40,101,44,115,44,110,44,108,41,123,111,40,108,124,124,100,111,99,117,109,101,110,116,44,115,44,102,117,110,99,116,105,111,110,40,111,41,123,102,111,114,40,118,97,114,32,115,44,108,61,111,46,116,97,114,103,101,116,124,124,111,46,115,114,99,69,108,101,109,101,110,116,59,108,38,38,33,40,115,61,116,40,108,44,101,41,41,59,41,108,61,108,46,112,97,114,101,110,116,69,108,101,109,101,110,116,59,115,38,38,110,46,99,97,108,108,40,108,44,111,41,125,41,125,105,102,40,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,41,123,118,97,114,32,108,61,123,115,101,108,101,99,116,111,114,58,48,44,115,111,117,114,99,101,58,48,44,109,105,110,67,104,97,114,115,58,51,44,100,101,108,97,121,58,49,53,48,44,111,102,102,115,101,116,76,101,102,116,58,48,44,111,102,102,115,101,116,84,111,112,58,49,44,99,97,99,104,101,58,49,44,109,101,110,117,67,108,97,115,115,58,34,34,44,114,101,110,100,101,114,73,116,101,109,58,102,117,110,99,116,105,111,110,40,101,44,116,41,123,116,61,116,46,114,101,112,108,97,99,101,40,47,91,45,92,47,92,92,94,36,42,43,63,46,40,41,124,91,92,93,123,125,93,47,103,44,34,92,92,36,38,34,41,59,118,97,114,32,111,61,110,101,119,32,82,101,103,69,120,112,40,34,40,34,43,116,46,115,112,108,105,116,40,34,32,34,41,46,106,111,105,110,40,34,124,34,41,43,34,41,34,44,34,103,105,34,41,59,114,101,116,117,114,110,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,43,101,43,39,34,62,39,43,101,46,114,101,112,108,97,99,101,40,111,44,34,60,98,62,36,49,60,47,98,62,34,41,43,34,60,47,100,105,118,62,34,125,44,111,110,83,101,108,101,99,116,58,102,117,110,99,116,105,111,110,40,41,123,125,125,59,102,111,114,40,118,97,114,32,99,32,105,110,32,101,41,101,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,99,41,38,38,40,108,91,99,93,61,101,91,99,93,41,59,102,111,114,40,118,97,114,32,97,61,34,111,98,106,101,99,116,34,61,61,116,121,112,101,111,102,32,108,46,115,101,108,101,99,116,111,114,63,91,108,46,115,101,108,101,99,116,111,114,93,58,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,65,108,108,40,108,46,115,101,108,101,99,116,111,114,41,44,117,61,48,59,117,60,97,46,108,101,110,103,116,104,59,117,43,43,41,123,118,97,114,32,105,61,97,91,117,93,59,105,46,115,99,61,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,44,105,46,115,99,46,99,108,97,115,115,78,97,109,101,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,32,34,43,108,46,109,101,110,117,67,108,97,115,115,44,105,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,61,105,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,105,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,34,111,102,102,34,41,44,105,46,99,97,99,104,101,61,123,125,44,105,46,108,97,115,116,95,118,97,108,61,34,34,44,105,46,117,112,100,97,116,101,83,67,61,102,117,110,99,116,105,111,110,40,101,44,116,41,123,118,97,114,32,111,61,105,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,59,105,102,40,105,46,115,99,46,115,116,121,108,101,46,108,101,102,116,61,77,97,116,104,46,114,111,117,110,100,40,111,46,108,101,102,116,43,40,119,105,110,100,111,119,46,112,97,103,101,88,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,76,101,102,116,41,43,108,46,111,102,102,115,101,116,76,101,102,116,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,116,111,112,61,77,97,116,104,46,114,111,117,110,100,40,111,46,98,111,116,116,111,109,43,40,119,105,110,100,111,119,46,112,97,103,101,89,79,102,102,115,101,116,124,124,100,111,99,117,109,101,110,116,46,100,111,99,117,109,101,110,116,69,108,101,109,101,110,116,46,115,99,114,111,108,108,84,111,112,41,43,108,46,111,102,102,115,101,116,84,111,112,41,43,34,112,120,34,44,105,46,115,99,46,115,116,121,108,101,46,119,105,100,116,104,61,77,97,116,104,46,114,111,117,110,100,40,111,46,114,105,103,104,116,45,111,46,108,101,102,116,41,43,34,112,120,34,44,33,101,38,38,40,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,105,46,115,99,46,109,97,120,72,101,105,103,104,116,124,124,40,105,46,115,99,46,109,97,120,72,101,105,103,104,116,61,112,97,114,115,101,73,110,116,40,40,119,105,110,100,111,119,46,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,63,103,101,116,67,111,109,112,117,116,101,100,83,116,121,108,101,40,105,46,115,99,44,110,117,108,108,41,58,105,46,115,99,46,99,117,114,114,101,110,116,83,116,121,108,101,41,46,109,97,120,72,101,105,103,104,116,41,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,124,124,40,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,46,111,102,102,115,101,116,72,101,105,103,104,116,41,44,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,41,41,105,102,40,116,41,123,118,97,114,32,115,61,105,46,115,99,46,115,99,114,111,108,108,84,111,112,44,110,61,116,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,45,105,46,115,99,46,103,101,116,66,111,117,110,100,105,110,103,67,108,105,101,110,116,82,101,99,116,40,41,46,116,111,112,59,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,62,48,63,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,105,46,115,99,46,115,117,103,103,101,115,116,105,111,110,72,101,105,103,104,116,43,115,45,105,46,115,99,46,109,97,120,72,101,105,103,104,116,58,48,62,110,38,38,40,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,110,43,115,41,125,101,108,115,101,32,105,46,115,99,46,115,99,114,111,108,108,84,111,112,61,48,125,44,111,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,105,46,117,112,100,97,116,101,83,67,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,108,101,97,118,101,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,125,44,50,48,41,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,111,118,101,114,34,44,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,101,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,101,38,38,40,101,46,99,108,97,115,115,78,97,109,101,61,101,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,41,44,116,104,105,115,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,125,44,105,46,115,99,41,44,110,40,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,44,34,109,111,117,115,101,100,111,119,110,34,44,102,117,110,99,116,105,111,110,40,101,41,123,105,102,40,116,40,116,104,105,115,44,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,41,123,118,97,114,32,111,61,116,104,105,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,59,105,46,118,97,108,117,101,61,111,44,108,46,111,110,83,101,108,101,99,116,40,101,44,111,44,116,104,105,115,41,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,105,46,115,99,41,44,105,46,98,108,117,114,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,41,123,116,114,121,123,118,97,114,32,101,61,100,111,99,117,109,101,110,116,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,115,58,104,111,118,101,114,34,41,125,99,97,116,99,104,40,116,41,123,118,97,114,32,101,61,48,125,101,63,105,33,61,61,100,111,99,117,109,101,110,116,46,97,99,116,105,118,101,69,108,101,109,101,110,116,38,38,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,102,111,99,117,115,40,41,125,44,50,48,41,58,40,105,46,108,97,115,116,95,118,97,108,61,105,46,118,97,108,117,101,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,51,53,48,41,41,125,44,111,40,105,44,34,98,108,117,114,34,44,105,46,98,108,117,114,72,97,110,100,108,101,114,41,59,118,97,114,32,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,105,46,118,97,108,117,101,59,105,102,40,105,46,99,97,99,104,101,91,116,93,61,101,44,101,46,108,101,110,103,116,104,38,38,116,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,102,111,114,40,118,97,114,32,111,61,34,34,44,115,61,48,59,115,60,101,46,108,101,110,103,116,104,59,115,43,43,41,111,43,61,108,46,114,101,110,100,101,114,73,116,101,109,40,101,91,115,93,44,116,41,59,105,46,115,99,46,105,110,110,101,114,72,84,77,76,61,111,44,105,46,117,112,100,97,116,101,83,67,40,48,41,125,101,108,115,101,32,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,59,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,40,52,48,61,61,116,124,124,51,56,61,61,116,41,38,38,105,46,115,99,46,105,110,110,101,114,72,84,77,76,41,123,118,97,114,32,111,44,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,114,101,116,117,114,110,32,115,63,40,111,61,52,48,61,61,116,63,115,46,110,101,120,116,83,105,98,108,105,110,103,58,115,46,112,114,101,118,105,111,117,115,83,105,98,108,105,110,103,44,111,63,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,58,40,115,46,99,108,97,115,115,78,97,109,101,61,115,46,99,108,97,115,115,78,97,109,101,46,114,101,112,108,97,99,101,40,34,115,101,108,101,99,116,101,100,34,44,34,34,41,44,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,111,61,48,41,41,58,40,111,61,52,48,61,61,116,63,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,41,58,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,91,105,46,115,99,46,99,104,105,108,100,78,111,100,101,115,46,108,101,110,103,116,104,45,49,93,44,111,46,99,108,97,115,115,78,97,109,101,43,61,34,32,115,101,108,101,99,116,101,100,34,44,105,46,118,97,108,117,101,61,111,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,41,44,105,46,117,112,100,97,116,101,83,67,40,48,44,111,41,44,33,49,125,105,102,40,50,55,61,61,116,41,105,46,118,97,108,117,101,61,105,46,108,97,115,116,95,118,97,108,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,32,105,102,40,49,51,61,61,116,124,124,57,61,61,116,41,123,118,97,114,32,115,61,105,46,115,99,46,113,117,101,114,121,83,101,108,101,99,116,111,114,40,34,46,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,46,115,101,108,101,99,116,101,100,34,41,59,115,38,38,34,110,111,110,101,34,33,61,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,38,38,40,108,46,111,110,83,101,108,101,99,116,40,101,44,115,46,103,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,118,97,108,34,41,44,115,41,44,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,44,50,48,41,41,125,125,44,111,40,105,44,34,107,101,121,100,111,119,110,34,44,105,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,118,97,114,32,116,61,119,105,110,100,111,119,46,101,118,101,110,116,63,101,46,107,101,121,67,111,100,101,58,101,46,119,104,105,99,104,59,105,102,40,33,116,124,124,40,51,53,62,116,124,124,116,62,52,48,41,38,38,49,51,33,61,116,38,38,50,55,33,61,116,41,123,118,97,114,32,111,61,105,46,118,97,108,117,101,59,105,102,40,111,46,108,101,110,103,116,104,62,61,108,46,109,105,110,67,104,97,114,115,41,123,105,102,40,111,33,61,105,46,108,97,115,116,95,118,97,108,41,123,105,102,40,105,46,108,97,115,116,95,118,97,108,61,111,44,99,108,101,97,114,84,105,109,101,111,117,116,40,105,46,116,105,109,101,114,41,44,108,46,99,97,99,104,101,41,123,105,102,40,111,32,105,110,32,105,46,99,97,99,104,101,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,105,46,99,97,99,104,101,91,111,93,41,59,102,111,114,40,118,97,114,32,115,61,49,59,115,60,111,46,108,101,110,103,116,104,45,108,46,109,105,110,67,104,97,114,115,59,115,43,43,41,123,118,97,114,32,110,61,111,46,115,108,105,99,101,40,48,44,111,46,108,101,110,103,116,104,45,115,41,59,105,102,40,110,32,105,110,32,105,46,99,97,99,104,101,38,38,33,105,46,99,97,99,104,101,91,110,93,46,108,101,110,103,116,104,41,114,101,116,117,114,110,32,118,111,105,100,32,114,40,91,93,41,125,125,105,46,116,105,109,101,114,61,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,108,46,115,111,117,114,99,101,40,111,44,114,41,125,44,108,46,100,101,108,97,121,41,125,125,101,108,115,101,32,105,46,108,97,115,116,95,118,97,108,61,111,44,105,46,115,99,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,125,125,44,111,40,105,44,34,107,101,121,117,112,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,61,102,117,110,99,116,105,111,110,40,101,41,123,105,46,108,97,115,116,95,118,97,108,61,34,92,110,34,44,105,46,107,101,121,117,112,72,97,110,100,108,101,114,40,101,41,125,44,108,46,109,105,110,67,104,97,114,115,124,124,111,40,105,44,34,102,111,99,117,115,34,44,105,46,102,111,99,117,115,72,97,110,100,108,101,114,41,125,116,104,105,115,46,100,101,115,116,114,111,121,61,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,101,61,48,59,101,60,97,46,108,101,110,103,116,104,59,101,43,43,41,123,118,97,114,32,116,61,97,91,101,93,59,115,40,119,105,110,100,111,119,44,34,114,101,115,105,122,101,34,44,116,46,117,112,100,97,116,101,83,67,41,44,115,40,116,44,34,98,108,117,114,34,44,116,46,98,108,117,114,72,97,110,100,108,101,114,41,44,115,40,116,44,34,102,111,99,117,115,34,44,116,46,102,111,99,117,115,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,100,111,119,110,34,44,116,46,107,101,121,100,111,119,110,72,97,110,100,108,101,114,41,44,115,40,116,44,34,107,101,121,117,112,34,44,116,46,107,101,121,117,112,72,97,110,100,108,101,114,41,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,63,116,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,44,116,46,97,117,116,111,99,111,109,112,108,101,116,101,65,116,116,114,41,58,116,46,114,101,109,111,118,101,65,116,116,114,105,98,117,116,101,40,34,97,117,116,111,99,111,109,112,108,101,116,101,34,41,44,100,111,99,117,109,101,110,116,46,98,111,100,121,46,114,101,109,111,118,101,67,104,105,108,100,40,116,46,115,99,41,44,116,61,110,117,108,108,125,125,125,125,114,101,116,117,114,110,32,101,125,40,41,59,33,102,117,110,99,116,105,111,110,40,41,123,34,102,117,110,99,116,105,111,110,34,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,34,97,117,116,111,67,111,109,112,108,101,116,101,34,44,102,117,110,99,116,105,111,110,40,41,123,114,101,116,117,114,110,32,97,117,116,111,67,111,109,112,108,101,116,101,125,41,58,34,117,110,100,101,102,105,110,101,100,34,33,61,116,121,112,101,111,102,32,109,111,100,117,108,101,38,38,109,111,100,117,108,101,46,101,120,112,111,114,116,115,63,109,111,100,117,108,101,46,101,120,112,111,114,116,115,61,97,117,116,111,67,111,109,112,108,101,116,101,58,119,105,110,100,111,119,46,97,117,116,111,67,111,109,112,108,101,116,101,61,97,117,116,111,67,111,109,112,108,101,116,101,125,40,41,59,10,239,187,191,40,102,117,110,99,116,105,111,110,40,102,41,123,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,100,101,102,105,110,101,38,38,100,101,102,105,110,101,46,97,109,100,63,100,101,102,105,110,101,40,91,34,106,113,117,101,114,121,34,93,44,102,117,110,99,116,105,111,110,40,110,41,123,114,101,116,117,114,110,32,102,40,110,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,58,34,111,98,106,101,99,116,34,61,61,61,116,121,112,101,111,102,32,101,120,112,111,114,116,115,63,102,40,114,101,113,117,105,114,101,40,34,106,113,117,101,114,121,34,41,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,58,102,40,106,81,117,101,114,121,44,100,111,99,117,109,101,110,116,44,119,105,110,100,111,119,44,110,97,118,105,103,97,116,111,114,41,125,41,40,102,117,110,99,116,105,111,110,40,102,44,110,44,107,44,114,44,112,41,123,118,97,114,32,116,61,48,44,109,61,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,114,46,117,115,101,114,65,103,101,110,116,44,98,61,47,109,115,105,101,92,115,92,100,43,47,105,59,114,101,116,117,114,110,32,48,60,97,46,115,101,97,114,99,104,40,98,41,38,38,40,97,61,98,46,101,120,101,99,40,97,41,46,116,111,83,116,114,105,110,103,40,41,44,97,61,97,46,115,112,108,105,116,40,34,32,34,41,91,49,93,44,57,62,97,41,63,40,102,40,34,104,116,109,108,34,41,46,97,100,100,67,108,97,115,115,40,34,108,116,45,105,101,57,34,41,44,33,48,41,58,33,49,125,40,41,59,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,124,124,40,70,117,110,99,116,105,111,110,46,112,114,111,116,111,116,121,112,101,46,98,105,110,100,61,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,44,100,61,91,93,46,115,108,105,99,101,59,105,102,40,34,102,117,110,99,116,105,111,110,34,33,61,10,116,121,112,101,111,102,32,98,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,59,118,97,114,32,99,61,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,44,49,41,44,101,61,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,32,105,110,115,116,97,110,99,101,111,102,32,101,41,123,118,97,114,32,103,61,102,117,110,99,116,105,111,110,40,41,123,125,59,103,46,112,114,111,116,111,116,121,112,101,61,98,46,112,114,111,116,111,116,121,112,101,59,118,97,114,32,103,61,110,101,119,32,103,44,108,61,98,46,97,112,112,108,121,40,103,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,59,114,101,116,117,114,110,32,79,98,106,101,99,116,40,108,41,61,61,61,108,63,108,58,103,125,114,101,116,117,114,110,32,98,46,97,112,112,108,121,40,97,44,99,46,99,111,110,99,97,116,40,100,46,99,97,108,108,40,97,114,103,117,109,101,110,116,115,41,41,41,125,59,114,101,116,117,114,110,32,101,125,41,59,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,124,124,40,65,114,114,97,121,46,112,114,111,116,111,116,121,112,101,46,105,110,100,101,120,79,102,61,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,110,117,108,108,61,61,116,104,105,115,41,116,104,114,111,119,32,110,101,119,32,84,121,112,101,69,114,114,111,114,40,39,34,116,104,105,115,34,32,105,115,32,110,117,108,108,32,111,114,32,110,111,116,32,100,101,102,105,110,101,100,39,41,59,118,97,114,32,100,61,79,98,106,101,99,116,40,116,104,105,115,41,44,99,61,100,46,108,101,110,103,116,104,62,62,62,48,59,105,102,40,48,61,61,61,99,41,114,101,116,117,114,110,45,49,59,118,97,114,32,101,61,43,98,124,124,48,59,73,110,102,105,110,105,116,121,61,61,61,77,97,116,104,46,97,98,115,40,101,41,38,38,40,101,61,48,41,59,105,102,40,101,62,61,99,41,114,101,116,117,114,110,45,49,59,10,102,111,114,40,101,61,77,97,116,104,46,109,97,120,40,48,60,61,101,63,101,58,99,45,77,97,116,104,46,97,98,115,40,101,41,44,48,41,59,101,60,99,59,41,123,105,102,40,101,32,105,110,32,100,38,38,100,91,101,93,61,61,61,97,41,114,101,116,117,114,110,32,101,59,101,43,43,125,114,101,116,117,114,110,45,49,125,41,59,118,97,114,32,113,61,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,116,104,105,115,46,86,69,82,83,73,79,78,61,34,50,46,50,46,48,34,59,116,104,105,115,46,105,110,112,117,116,61,97,59,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,61,100,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,48,59,116,104,105,115,46,114,97,102,95,105,100,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,59,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,48,59,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,59,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,48,59,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,33,49,59,98,61,98,124,124,123,125,59,116,104,105,115,46,36,99,97,99,104,101,61,123,119,105,110,58,102,40,107,41,44,98,111,100,121,58,102,40,110,46,98,111,100,121,41,44,10,105,110,112,117,116,58,102,40,97,41,44,99,111,110,116,58,110,117,108,108,44,114,115,58,110,117,108,108,44,109,105,110,58,110,117,108,108,44,109,97,120,58,110,117,108,108,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,105,110,103,108,101,58,110,117,108,108,44,98,97,114,58,110,117,108,108,44,108,105,110,101,58,110,117,108,108,44,115,95,115,105,110,103,108,101,58,110,117,108,108,44,115,95,102,114,111,109,58,110,117,108,108,44,115,95,116,111,58,110,117,108,108,44,115,104,97,100,95,115,105,110,103,108,101,58,110,117,108,108,44,115,104,97,100,95,102,114,111,109,58,110,117,108,108,44,115,104,97,100,95,116,111,58,110,117,108,108,44,101,100,103,101,58,110,117,108,108,44,103,114,105,100,58,110,117,108,108,44,103,114,105,100,95,108,97,98,101,108,115,58,91,93,125,59,116,104,105,115,46,99,111,111,114,100,115,61,123,120,95,103,97,112,58,48,44,120,95,112,111,105,110,116,101,114,58,48,44,119,95,114,115,58,48,44,119,95,114,115,95,111,108,100,58,48,44,119,95,104,97,110,100,108,101,58,48,44,112,95,103,97,112,58,48,44,112,95,103,97,112,95,108,101,102,116,58,48,44,112,95,103,97,112,95,114,105,103,104,116,58,48,44,112,95,115,116,101,112,58,48,44,112,95,112,111,105,110,116,101,114,58,48,44,112,95,104,97,110,100,108,101,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,114,101,97,108,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,114,101,97,108,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,114,101,97,108,58,48,44,112,95,98,97,114,95,120,58,48,44,112,95,98,97,114,95,119,58,48,44,103,114,105,100,95,103,97,112,58,48,44,98,105,103,95,110,117,109,58,48,44,98,105,103,58,91,93,44,98,105,103,95,119,58,91,93,44,98,105,103,95,112,58,91,93,44,98,105,103,95,120,58,91,93,125,59,10,116,104,105,115,46,108,97,98,101,108,115,61,123,119,95,109,105,110,58,48,44,119,95,109,97,120,58,48,44,119,95,102,114,111,109,58,48,44,119,95,116,111,58,48,44,119,95,115,105,110,103,108,101,58,48,44,112,95,109,105,110,58,48,44,112,95,109,97,120,58,48,44,112,95,102,114,111,109,95,102,97,107,101,58,48,44,112,95,102,114,111,109,95,108,101,102,116,58,48,44,112,95,116,111,95,102,97,107,101,58,48,44,112,95,116,111,95,108,101,102,116,58,48,44,112,95,115,105,110,103,108,101,95,102,97,107,101,58,48,44,112,95,115,105,110,103,108,101,95,108,101,102,116,58,48,125,59,118,97,114,32,99,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,59,97,61,99,46,112,114,111,112,40,34,118,97,108,117,101,34,41,59,118,97,114,32,101,59,100,61,123,116,121,112,101,58,34,115,105,110,103,108,101,34,44,109,105,110,58,49,48,44,109,97,120,58,49,48,48,44,102,114,111,109,58,110,117,108,108,44,116,111,58,110,117,108,108,44,115,116,101,112,58,49,44,109,105,110,95,105,110,116,101,114,118,97,108,58,48,44,109,97,120,95,105,110,116,101,114,118,97,108,58,48,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,33,49,44,118,97,108,117,101,115,58,91,93,44,112,95,118,97,108,117,101,115,58,91,93,44,102,114,111,109,95,102,105,120,101,100,58,33,49,44,102,114,111,109,95,109,105,110,58,110,117,108,108,44,102,114,111,109,95,109,97,120,58,110,117,108,108,44,102,114,111,109,95,115,104,97,100,111,119,58,33,49,44,116,111,95,102,105,120,101,100,58,33,49,44,116,111,95,109,105,110,58,110,117,108,108,44,116,111,95,109,97,120,58,110,117,108,108,44,116,111,95,115,104,97,100,111,119,58,33,49,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,33,48,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,34,32,34,44,112,114,101,116,116,105,102,121,58,110,117,108,108,44,102,111,114,99,101,95,101,100,103,101,115,58,33,49,44,10,107,101,121,98,111,97,114,100,58,33,48,44,103,114,105,100,58,33,49,44,103,114,105,100,95,109,97,114,103,105,110,58,33,48,44,103,114,105,100,95,110,117,109,58,52,44,103,114,105,100,95,115,110,97,112,58,33,49,44,104,105,100,101,95,109,105,110,95,109,97,120,58,33,49,44,104,105,100,101,95,102,114,111,109,95,116,111,58,33,49,44,112,114,101,102,105,120,58,34,34,44,112,111,115,116,102,105,120,58,34,34,44,109,97,120,95,112,111,115,116,102,105,120,58,34,34,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,33,48,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,32,92,117,50,48,49,52,32,34,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,34,59,34,44,100,105,115,97,98,108,101,58,33,49,44,98,108,111,99,107,58,33,49,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,34,34,44,115,99,111,112,101,58,110,117,108,108,44,111,110,83,116,97,114,116,58,110,117,108,108,44,111,110,67,104,97,110,103,101,58,110,117,108,108,44,111,110,70,105,110,105,115,104,58,110,117,108,108,44,111,110,85,112,100,97,116,101,58,110,117,108,108,125,59,34,73,78,80,85,84,34,33,61,61,99,91,48,93,46,110,111,100,101,78,97,109,101,38,38,99,111,110,115,111,108,101,38,38,99,111,110,115,111,108,101,46,119,97,114,110,38,38,99,111,110,115,111,108,101,46,119,97,114,110,40,34,66,97,115,101,32,101,108,101,109,101,110,116,32,115,104,111,117,108,100,32,98,101,32,60,105,110,112,117,116,62,33,34,44,99,91,48,93,41,59,99,61,123,116,121,112,101,58,99,46,100,97,116,97,40,34,116,121,112,101,34,41,44,109,105,110,58,99,46,100,97,116,97,40,34,109,105,110,34,41,44,109,97,120,58,99,46,100,97,116,97,40,34,109,97,120,34,41,44,102,114,111,109,58,99,46,100,97,116,97,40,34,102,114,111,109,34,41,44,116,111,58,99,46,100,97,116,97,40,34,116,111,34,41,44,115,116,101,112,58,99,46,100,97,116,97,40,34,115,116,101,112,34,41,44,10,109,105,110,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,105,110,73,110,116,101,114,118,97,108,34,41,44,109,97,120,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,109,97,120,73,110,116,101,114,118,97,108,34,41,44,100,114,97,103,95,105,110,116,101,114,118,97,108,58,99,46,100,97,116,97,40,34,100,114,97,103,73,110,116,101,114,118,97,108,34,41,44,118,97,108,117,101,115,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,34,41,44,102,114,111,109,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,102,114,111,109,70,105,120,101,100,34,41,44,102,114,111,109,95,109,105,110,58,99,46,100,97,116,97,40,34,102,114,111,109,77,105,110,34,41,44,102,114,111,109,95,109,97,120,58,99,46,100,97,116,97,40,34,102,114,111,109,77,97,120,34,41,44,102,114,111,109,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,102,114,111,109,83,104,97,100,111,119,34,41,44,116,111,95,102,105,120,101,100,58,99,46,100,97,116,97,40,34,116,111,70,105,120,101,100,34,41,44,116,111,95,109,105,110,58,99,46,100,97,116,97,40,34,116,111,77,105,110,34,41,44,116,111,95,109,97,120,58,99,46,100,97,116,97,40,34,116,111,77,97,120,34,41,44,116,111,95,115,104,97,100,111,119,58,99,46,100,97,116,97,40,34,116,111,83,104,97,100,111,119,34,41,44,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,69,110,97,98,108,101,100,34,41,44,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,112,114,101,116,116,105,102,121,83,101,112,97,114,97,116,111,114,34,41,44,102,111,114,99,101,95,101,100,103,101,115,58,99,46,100,97,116,97,40,34,102,111,114,99,101,69,100,103,101,115,34,41,44,107,101,121,98,111,97,114,100,58,99,46,100,97,116,97,40,34,107,101,121,98,111,97,114,100,34,41,44,10,103,114,105,100,58,99,46,100,97,116,97,40,34,103,114,105,100,34,41,44,103,114,105,100,95,109,97,114,103,105,110,58,99,46,100,97,116,97,40,34,103,114,105,100,77,97,114,103,105,110,34,41,44,103,114,105,100,95,110,117,109,58,99,46,100,97,116,97,40,34,103,114,105,100,78,117,109,34,41,44,103,114,105,100,95,115,110,97,112,58,99,46,100,97,116,97,40,34,103,114,105,100,83,110,97,112,34,41,44,104,105,100,101,95,109,105,110,95,109,97,120,58,99,46,100,97,116,97,40,34,104,105,100,101,77,105,110,77,97,120,34,41,44,104,105,100,101,95,102,114,111,109,95,116,111,58,99,46,100,97,116,97,40,34,104,105,100,101,70,114,111,109,84,111,34,41,44,112,114,101,102,105,120,58,99,46,100,97,116,97,40,34,112,114,101,102,105,120,34,41,44,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,112,111,115,116,102,105,120,34,41,44,109,97,120,95,112,111,115,116,102,105,120,58,99,46,100,97,116,97,40,34,109,97,120,80,111,115,116,102,105,120,34,41,44,100,101,99,111,114,97,116,101,95,98,111,116,104,58,99,46,100,97,116,97,40,34,100,101,99,111,114,97,116,101,66,111,116,104,34,41,44,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,118,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,58,99,46,100,97,116,97,40,34,105,110,112,117,116,86,97,108,117,101,115,83,101,112,97,114,97,116,111,114,34,41,44,100,105,115,97,98,108,101,58,99,46,100,97,116,97,40,34,100,105,115,97,98,108,101,34,41,44,98,108,111,99,107,58,99,46,100,97,116,97,40,34,98,108,111,99,107,34,41,44,101,120,116,114,97,95,99,108,97,115,115,101,115,58,99,46,100,97,116,97,40,34,101,120,116,114,97,67,108,97,115,115,101,115,34,41,125,59,99,46,118,97,108,117,101,115,61,99,46,118,97,108,117,101,115,38,38,99,46,118,97,108,117,101,115,46,115,112,108,105,116,40,34,44,34,41,59,10,102,111,114,40,101,32,105,110,32,99,41,99,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,101,41,38,38,40,99,91,101,93,33,61,61,112,38,38,34,34,33,61,61,99,91,101,93,124,124,100,101,108,101,116,101,32,99,91,101,93,41,59,97,33,61,61,112,38,38,34,34,33,61,61,97,38,38,40,97,61,97,46,115,112,108,105,116,40,99,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,98,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,124,124,34,59,34,41,44,97,91,48,93,38,38,97,91,48,93,61,61,43,97,91,48,93,38,38,40,97,91,48,93,61,43,97,91,48,93,41,44,97,91,49,93,38,38,97,91,49,93,61,61,43,97,91,49,93,38,38,40,97,91,49,93,61,43,97,91,49,93,41,44,98,38,38,98,46,118,97,108,117,101,115,38,38,98,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,40,100,46,102,114,111,109,61,97,91,48,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,48,93,41,44,100,46,116,111,61,97,91,49,93,38,38,98,46,118,97,108,117,101,115,46,105,110,100,101,120,79,102,40,97,91,49,93,41,41,58,40,100,46,102,114,111,109,61,97,91,48,93,38,38,43,97,91,48,93,44,100,46,116,111,61,97,91,49,93,38,38,43,97,91,49,93,41,41,59,102,46,101,120,116,101,110,100,40,100,44,98,41,59,102,46,101,120,116,101,110,100,40,100,44,99,41,59,116,104,105,115,46,111,112,116,105,111,110,115,61,100,59,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,61,123,125,59,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,59,116,104,105,115,46,114,101,115,117,108,116,61,123,105,110,112,117,116,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,44,115,108,105,100,101,114,58,110,117,108,108,44,109,105,110,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,10,109,97,120,58,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,102,114,111,109,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,44,102,114,111,109,95,112,101,114,99,101,110,116,58,48,44,102,114,111,109,95,118,97,108,117,101,58,110,117,108,108,44,116,111,58,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,44,116,111,95,112,101,114,99,101,110,116,58,48,44,116,111,95,118,97,108,117,101,58,110,117,108,108,125,59,116,104,105,115,46,105,110,105,116,40,41,125,59,113,46,112,114,111,116,111,116,121,112,101,61,123,105,110,105,116,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,49,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,33,48,41,59,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,59,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,59,116,104,105,115,46,97,112,112,101,110,100,40,41,59,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,59,97,63,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,85,112,100,97,116,101,40,41,41,58,40,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,99,97,108,108,79,110,83,116,97,114,116,40,41,41,59,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,125,44,97,112,112,101,110,100,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,98,101,102,111,114,101,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,32,106,115,45,105,114,115,45,39,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,43,34,32,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,101,120,116,114,97,95,99,108,97,115,115,101,115,43,39,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,48,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,101,118,40,41,59,116,104,105,115,46,114,101,115,117,108,116,46,115,108,105,100,101,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,104,116,109,108,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,34,32,116,97,98,105,110,100,101,120,61,34,48,34,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,108,101,102,116,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,109,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,108,105,110,101,45,114,105,103,104,116,34,62,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,105,110,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,109,97,120,34,62,49,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,102,114,111,109,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,116,111,34,62,48,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,105,110,103,108,101,34,62,48,60,47,115,112,97,110,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,34,62,60,47,115,112,97,110,62,39,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,105,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,109,97,120,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,102,114,111,109,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,116,111,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,115,105,110,103,108,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,108,105,110,101,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,103,114,105,100,34,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,98,97,114,45,101,100,103,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,115,105,110,103,108,101,34,62,60,47,115,112,97,110,62,39,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,105,114,115,45,98,97,114,45,101,100,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,105,110,103,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,115,105,110,103,108,101,34,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,104,97,100,111,119,32,115,104,97,100,111,119,45,116,111,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,102,114,111,109,34,62,60,47,115,112,97,110,62,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,115,108,105,100,101,114,32,116,111,34,62,60,47,115,112,97,110,62,39,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,102,114,111,109,34,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,116,111,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,102,114,111,109,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,104,97,100,111,119,45,116,111,34,41,44,116,104,105,115,46,115,101,116,84,111,112,72,97,110,100,108,101,114,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,59,116,104,105,115,46,97,112,112,101,110,100,71,114,105,100,40,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,63,40,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,48,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,91,48,93,46,100,105,115,97,98,108,101,100,61,33,49,44,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,44,116,104,105,115,46,98,105,110,100,69,118,101,110,116,115,40,41,41,59,10,116,104,105,115,46,111,112,116,105,111,110,115,46,100,105,115,97,98,108,101,124,124,40,116,104,105,115,46,111,112,116,105,111,110,115,46,98,108,111,99,107,63,116,104,105,115,46,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,40,41,58,116,104,105,115,46,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,40,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,99,117,114,115,111,114,61,34,109,111,118,101,34,41,125,44,115,101,116,84,111,112,72,97,110,100,108,101,114,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,38,38,98,61,61,61,97,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,58,98,60,97,38,38,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,44,99,104,97,110,103,101,76,101,118,101,108,58,102,117,110,99,116,105,111,110,40,97,41,123,115,119,105,116,99,104,40,97,41,123,99,97,115,101,32,34,115,105,110,103,108,101,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,97,100,100,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,114,101,109,111,118,101,67,108,97,115,115,40,34,116,121,112,101,95,108,97,115,116,34,41,125,125,44,97,112,112,101,110,100,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,112,112,101,110,100,40,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,62,60,47,115,112,97,110,62,39,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,68,105,115,97,98,108,101,77,97,115,107,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,34,46,105,114,115,45,100,105,115,97,98,108,101,45,109,97,115,107,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,67,108,97,115,115,40,34,105,114,115,45,100,105,115,97,98,108,101,100,34,41,125,44,114,101,109,111,118,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,114,101,109,111,118,101,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,61,10,110,117,108,108,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,102,102,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,102,102,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,61,91,93,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,61,10,91,93,59,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,125,44,98,105,110,100,69,118,101,110,116,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,33,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,41,123,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,116,111,117,99,104,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,109,111,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,77,111,118,101,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,116,111,117,99,104,101,110,100,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,119,105,110,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,102,111,99,117,115,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,70,111,99,117,115,46,98,105,110,100,40,116,104,105,115,41,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,38,38,34,100,111,117,98,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,98,111,116,104,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,10,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,10,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,115,105,110,103,108,101,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,101,100,103,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,110,117,108,108,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,116,111,117,99,104,115,116,97,114,116,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,10,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,102,114,111,109,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,68,111,119,110,46,98,105,110,100,40,116,104,105,115,44,34,116,111,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,102,114,111,109,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,104,97,100,95,116,111,46,111,110,40,34,109,111,117,115,101,100,111,119,110,46,105,114,115,95,34,43,10,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,46,98,105,110,100,40,116,104,105,115,44,34,99,108,105,99,107,34,41,41,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,107,101,121,98,111,97,114,100,41,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,111,110,40,34,107,101,121,100,111,119,110,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,107,101,121,46,98,105,110,100,40,116,104,105,115,44,34,107,101,121,98,111,97,114,100,34,41,41,59,109,38,38,40,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,117,112,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,98,111,100,121,46,111,110,40,34,109,111,117,115,101,108,101,97,118,101,46,105,114,115,95,34,43,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,112,111,105,110,116,101,114,85,112,46,98,105,110,100,40,116,104,105,115,41,41,41,125,125,44,112,111,105,110,116,101,114,70,111,99,117,115,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,33,116,104,105,115,46,116,97,114,103,101,116,41,123,118,97,114,32,98,61,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,58,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,59,97,61,98,46,111,102,102,115,101,116,40,41,46,108,101,102,116,59,97,43,61,98,46,119,105,100,116,104,40,41,47,50,45,49,59,116,104,105,115,46,112,111,105,110,116,101,114,67,108,105,99,107,40,34,115,105,110,103,108,101,34,44,10,123,112,114,101,118,101,110,116,68,101,102,97,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,125,44,112,97,103,101,88,58,97,125,41,125,125,44,112,111,105,110,116,101,114,77,111,118,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,100,114,97,103,103,105,110,103,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,40,97,46,112,97,103,101,88,124,124,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,97,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,41,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,40,41,41,125,44,112,111,105,110,116,101,114,85,112,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,38,38,116,104,105,115,46,105,115,95,97,99,116,105,118,101,38,38,40,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,49,44,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,102,105,110,100,40,34,46,115,116,97,116,101,95,104,111,118,101,114,34,41,46,114,101,109,111,118,101,67,108,97,115,115,40,34,115,116,97,116,101,95,104,111,118,101,114,34,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,33,49,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,44,116,104,105,115,46,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,40,41,44,40,102,46,99,111,110,116,97,105,110,115,40,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,91,48,93,44,10,97,46,116,97,114,103,101,116,41,124,124,116,104,105,115,46,100,114,97,103,103,105,110,103,41,38,38,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,33,49,41,125,44,112,111,105,110,116,101,114,68,111,119,110,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,34,98,111,116,104,34,61,61,61,97,38,38,116,104,105,115,46,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,40,41,44,97,124,124,40,97,61,116,104,105,115,46,116,97,114,103,101,116,124,124,34,102,114,111,109,34,41,44,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,100,114,97,103,103,105,110,103,61,116,104,105,115,46,105,115,95,97,99,116,105,118,101,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,44,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,44,116,104,105,115,46,99,104,97,110,103,101,76,101,118,101,108,40,97,41,44,109,38,38,102,40,34,42,34,41,46,112,114,111,112,40,34,117,110,115,101,108,101,99,116,97,98,108,101,34,44,10,33,48,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,44,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,40,41,41,125,44,112,111,105,110,116,101,114,67,108,105,99,107,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,118,97,114,32,100,61,98,46,112,97,103,101,88,124,124,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,38,38,98,46,111,114,105,103,105,110,97,108,69,118,101,110,116,46,116,111,117,99,104,101,115,91,48,93,46,112,97,103,101,88,59,50,33,61,61,98,46,98,117,116,116,111,110,38,38,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,44,116,104,105,115,46,116,97,114,103,101,116,61,97,44,116,104,105,115,46,105,115,95,99,108,105,99,107,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,102,102,115,101,116,40,41,46,108,101,102,116,44,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,43,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,120,95,103,97,112,41,46,116,111,70,105,120,101,100,40,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,97,108,99,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,108,105,110,101,46,116,114,105,103,103,101,114,40,34,102,111,99,117,115,34,41,41,125,44,107,101,121,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,40,116,104,105,115,46,99,117,114,114,101,110,116,95,112,108,117,103,105,110,33,61,61,116,104,105,115,46,112,108,117,103,105,110,95,99,111,117,110,116,124,124,98,46,97,108,116,75,101,121,124,124,10,98,46,99,116,114,108,75,101,121,124,124,98,46,115,104,105,102,116,75,101,121,124,124,98,46,109,101,116,97,75,101,121,41,41,123,115,119,105,116,99,104,40,98,46,119,104,105,99,104,41,123,99,97,115,101,32,56,51,58,99,97,115,101,32,54,53,58,99,97,115,101,32,52,48,58,99,97,115,101,32,51,55,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,59,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,49,41,59,98,114,101,97,107,59,99,97,115,101,32,56,55,58,99,97,115,101,32,54,56,58,99,97,115,101,32,51,56,58,99,97,115,101,32,51,57,58,98,46,112,114,101,118,101,110,116,68,101,102,97,117,108,116,40,41,44,116,104,105,115,46,109,111,118,101,66,121,75,101,121,40,33,48,41,125,114,101,116,117,114,110,33,48,125,125,44,109,111,118,101,66,121,75,101,121,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,44,100,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,47,100,59,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,47,49,48,48,42,40,97,63,98,43,100,58,98,45,100,41,41,59,116,104,105,115,46,105,115,95,107,101,121,61,33,48,59,116,104,105,115,46,99,97,108,99,40,41,125,44,115,101,116,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,109,105,110,95,109,97,120,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,110,111,110,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,59,101,108,115,101,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,41,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,93,41,41,44,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,91,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,93,41,41,59,101,108,115,101,123,118,97,114,32,97,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,95,112,114,101,116,116,121,61,97,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,95,112,114,101,116,116,121,61,98,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,97,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,104,116,109,108,40,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,41,125,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,61,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,61,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,125,125,44,115,101,116,84,101,109,112,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,110,117,108,108,61,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,125,44,114,101,115,116,111,114,101,79,114,105,103,105,110,97,108,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,41,123,110,117,108,108,33,61,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,95,105,110,116,101,114,118,97,108,61,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,44,116,104,105,115,46,111,108,100,95,109,105,110,95,105,110,116,101,114,118,97,108,61,110,117,108,108,41,125,44,99,97,108,99,58,102,117,110,99,116,105,111,110,40,97,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,43,43,59,105,102,40,49,48,61,61,61,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,124,124,97,41,116,104,105,115,46,99,97,108,99,95,99,111,117,110,116,61,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,10,116,104,105,115,46,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,40,41,59,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,59,34,98,111,116,104,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,48,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,41,59,34,99,108,105,99,107,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,97,61,116,104,105,115,46,103,101,116,72,97,110,100,108,101,88,40,41,44,116,104,105,115,46,116,97,114,103,101,116,61,116,104,105,115,46,111,112,116,105,111,110,115,46,100,114,97,103,95,105,110,116,101,114,118,97,108,63,34,98,111,116,104,95,111,110,101,34,58,116,104,105,115,46,99,104,111,111,115,101,72,97,110,100,108,101,40,97,41,41,59,115,119,105,116,99,104,40,116,104,105,115,46,116,97,114,103,101,116,41,123,99,97,115,101,32,34,98,97,115,101,34,58,118,97,114,32,98,61,40,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,49,48,48,59,97,61,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,98,61,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,98,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,10,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,116,97,114,103,101,116,61,110,117,108,108,59,98,114,101,97,107,59,99,97,115,101,32,34,115,105,110,103,108,101,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,59,10,98,114,101,97,107,59,99,97,115,101,32,34,102,114,111,109,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,62,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,10,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,116,111,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,60,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,34,58,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,124,124,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,98,114,101,97,107,59,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,43,46,48,48,49,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,108,101,102,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,34,102,114,111,109,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,95,114,105,103,104,116,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,34,116,111,34,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,59,98,114,101,97,107,59,99,97,115,101,32,34,98,111,116,104,95,111,110,101,34,58,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,41,123,118,97,114,32,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,40,97,41,59,97,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,45,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,59,118,97,114,32,99,61,97,47,50,44,98,61,100,45,99,44,100,61,100,43,99,59,48,62,98,38,38,40,98,61,48,44,100,61,98,43,97,41,59,49,48,48,60,100,38,38,40,100,61,49,48,48,44,98,61,100,45,97,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,98,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,10,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,97,108,99,87,105,116,104,83,116,101,112,40,100,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,61,116,104,105,115,46,99,104,101,99,107,68,105,97,112,97,115,111,110,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,105,110,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,109,97,120,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,125,125,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,41,58,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,10,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,41,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,59,116,104,105,115,46,99,97,108,99,77,105,110,77,97,120,40,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,125,125,125,44,99,97,108,99,80,111,105,110,116,101,114,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,63,40,48,62,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,124,124,105,115,78,97,78,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,41,63,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,10,48,58,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,62,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,120,95,112,111,105,110,116,101,114,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,41,58,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,61,48,125,44,99,111,110,118,101,114,116,84,111,82,101,97,108,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,42,49,48,48,125,44,99,111,110,118,101,114,116,84,111,70,97,107,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,47,49,48,48,42,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,125,44,103,101,116,72,97,110,100,108,101,88,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,44,98,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,112,111,105,110,116,101,114,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,103,97,112,41,59,48,62,98,63,98,61,48,58,98,62,97,38,38,40,98,61,97,41,59,114,101,116,117,114,110,32,98,125,44,99,97,108,99,72,97,110,100,108,101,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,104,111,111,115,101,72,97,110,100,108,101,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,34,115,105,110,103,108,101,34,58,97,62,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,43,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,114,101,97,108,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,114,101,97,108,41,47,50,63,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,95,102,105,120,101,100,63,34,102,114,111,109,34,58,34,116,111,34,58,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,95,102,105,120,101,100,63,34,116,111,34,58,34,102,114,111,109,34,125,44,99,97,108,99,77,105,110,77,97,120,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,105,110,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,61,10,116,104,105,115,46,108,97,98,101,108,115,46,119,95,109,97,120,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,125,44,99,97,108,99,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,38,38,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,41,58,40,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,61,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,102,114,111,109,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,61,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,116,111,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,61,10,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,44,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,61,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,61,116,104,105,115,46,108,97,98,101,108,115,46,119,95,115,105,110,103,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,41,47,50,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,47,50,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,41,41,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,61,116,104,105,115,46,99,104,101,99,107,69,100,103,101,115,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,41,41,125,44,117,112,100,97,116,101,83,99,101,110,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,97,102,95,105,100,38,38,10,40,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,114,97,102,95,105,100,41,44,116,104,105,115,46,114,97,102,95,105,100,61,110,117,108,108,41,59,99,108,101,97,114,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,95,116,109,41,59,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,110,117,108,108,59,116,104,105,115,46,111,112,116,105,111,110,115,38,38,40,116,104,105,115,46,100,114,97,119,72,97,110,100,108,101,115,40,41,44,116,104,105,115,46,105,115,95,97,99,116,105,118,101,63,116,104,105,115,46,114,97,102,95,105,100,61,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,41,58,116,104,105,115,46,117,112,100,97,116,101,95,116,109,61,115,101,116,84,105,109,101,111,117,116,40,116,104,105,115,46,117,112,100,97,116,101,83,99,101,110,101,46,98,105,110,100,40,116,104,105,115,41,44,51,48,48,41,41,125,44,100,114,97,119,72,97,110,100,108,101,115,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,41,123,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,38,38,40,116,104,105,115,46,116,97,114,103,101,116,61,34,98,97,115,101,34,44,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,33,48,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,33,61,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,115,101,116,77,105,110,77,97,120,40,41,44,10,116,104,105,115,46,99,97,108,99,40,33,48,41,44,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,38,38,40,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,44,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,41,44,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,33,48,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,95,111,108,100,61,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,44,116,104,105,115,46,100,114,97,119,83,104,97,100,111,119,40,41,59,105,102,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,100,114,97,103,103,105,110,103,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,41,123,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,124,124,116,104,105,115,46,105,115,95,107,101,121,41,123,116,104,105,115,46,100,114,97,119,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,120,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,98,97,114,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,98,97,114,95,119,43,34,37,34,59,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,10,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,43,34,37,34,59,101,108,115,101,123,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,102,114,111,109,95,102,97,107,101,43,34,37,34,59,116,104,105,115,46,36,99,97,99,104,101,46,115,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,116,111,95,102,97,107,101,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,102,114,111,109,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,34,37,34,59,105,102,40,116,104,105,115,46,111,108,100,95,116,111,33,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,41,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,34,37,34,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,34,37,34,59,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,38,38,116,104,105,115,46,111,108,100,95,116,111,61,61,61,10,116,104,105,115,46,114,101,115,117,108,116,46,116,111,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,99,104,97,110,103,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,114,105,103,103,101,114,40,34,105,110,112,117,116,34,41,41,59,116,104,105,115,46,111,108,100,95,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,59,116,104,105,115,46,111,108,100,95,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,59,116,104,105,115,46,105,115,95,114,101,115,105,122,101,124,124,116,104,105,115,46,105,115,95,117,112,100,97,116,101,124,124,116,104,105,115,46,105,115,95,115,116,97,114,116,124,124,116,104,105,115,46,105,115,95,102,105,110,105,115,104,124,124,116,104,105,115,46,99,97,108,108,79,110,67,104,97,110,103,101,40,41,59,105,102,40,116,104,105,115,46,105,115,95,107,101,121,124,124,116,104,105,115,46,105,115,95,99,108,105,99,107,41,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,33,49,44,116,104,105,115,46,99,97,108,108,79,110,70,105,110,105,115,104,40,41,59,116,104,105,115,46,105,115,95,102,105,110,105,115,104,61,116,104,105,115,46,105,115,95,114,101,115,105,122,101,61,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,49,125,116,104,105,115,46,102,111,114,99,101,95,114,101,100,114,97,119,61,116,104,105,115,46,105,115,95,99,108,105,99,107,61,116,104,105,115,46,105,115,95,107,101,121,61,116,104,105,115,46,105,115,95,115,116,97,114,116,61,33,49,125,125,125,44,100,114,97,119,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,44,10,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,112,95,118,97,108,117,101,115,59,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,104,105,100,101,95,102,114,111,109,95,116,111,41,105,102,40,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,41,123,105,102,40,97,41,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,59,101,108,115,101,123,118,97,114,32,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,125,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,101,108,115,101,123,97,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,10,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,41,58,40,100,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,111,112,116,105,111,110,115,46,100,101,99,111,114,97,116,101,95,98,111,116,104,63,40,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,97,43,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,44,97,43,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,58,97,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,43,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,10,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,100,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,100,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,98,61,116,104,105,115,46,100,101,99,111,114,97,116,101,40,98,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,59,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,46,104,116,109,108,40,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,46,104,116,109,108,40,100,41,59,116,104,105,115,46,36,99,97,99,104,101,46,116,111,46,104,116,109,108,40,98,41,59,116,104,105,115,46,99,97,108,99,76,97,98,101,108,115,40,41,59,97,61,77,97,116,104,46,109,105,110,40,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,44,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,41,59,100,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,115,105,110,103,108,101,95,102,97,107,101,59,118,97,114,32,98,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,102,97,107,101,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,59,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,108,101,102,116,43,116,104,105,115,46,108,97,98,101,108,115,46,112,95,102,114,111,109,95,102,97,107,101,62,61,116,104,105,115,46,108,97,98,101,108,115,46,112,95,116,111,95,108,101,102,116,63,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,61,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,63,40,34,102,114,111,109,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,34,116,111,34,61,61,61,116,104,105,115,46,116,97,114,103,101,116,63,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,58,116,104,105,115,46,116,97,114,103,101,116,124,124,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,41,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,99,61,98,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,99,61,77,97,116,104,46,109,97,120,40,100,44,98,41,41,41,58,40,116,104,105,115,46,36,99,97,99,104,101,46,102,114,111,109,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,10,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,116,111,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,118,105,115,105,98,108,101,34,44,116,104,105,115,46,36,99,97,99,104,101,46,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,34,104,105,100,100,101,110,34,41,59,116,104,105,115,46,36,99,97,99,104,101,46,109,105,110,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,97,60,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,105,110,43,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,59,116,104,105,115,46,36,99,97,99,104,101,46,109,97,120,91,48,93,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,99,62,49,48,48,45,116,104,105,115,46,108,97,98,101,108,115,46,112,95,109,97,120,45,49,63,34,104,105,100,100,101,110,34,58,34,118,105,115,105,98,108,101,34,125,125,125,44,100,114,97,119,83,104,97,100,111,119,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,36,99,97,99,104,101,44,100,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,105,110,41,44,99,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,102,114,111,109,95,109,97,120,41,44,101,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,105,110,41,44,103,61,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,33,105,115,78,97,78,40,97,46,116,111,95,109,97,120,41,59,10,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,115,105,110,103,108,101,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,58,40,97,46,102,114,111,109,95,115,104,97,100,111,119,38,38,40,100,124,124,99,41,63,40,100,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,100,63,97,46,102,114,111,109,95,109,105,110,58,97,46,109,105,110,41,44,99,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,99,63,97,46,102,114,111,109,95,109,97,120,58,97,46,109,97,120,41,45,10,100,44,100,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,100,41,44,99,61,116,104,105,115,46,116,111,70,105,120,101,100,40,99,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,99,41,44,100,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,100,43,34,37,34,44,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,99,43,34,37,34,41,58,98,46,115,104,97,100,95,102,114,111,109,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,44,97,46,116,111,95,115,104,97,100,111,119,38,38,40,101,124,124,103,41,63,40,101,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,101,63,97,46,116,111,95,109,105,110,58,97,46,109,105,110,41,44,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,103,63,97,46,116,111,95,109,97,120,58,97,46,109,97,120,41,45,101,44,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,101,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,101,41,44,97,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,49,48,48,42,97,41,44,101,43,61,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,10,34,98,108,111,99,107,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,101,43,34,37,34,44,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,97,43,34,37,34,41,58,98,46,115,104,97,100,95,116,111,91,48,93,46,115,116,121,108,101,46,100,105,115,112,108,97,121,61,34,110,111,110,101,34,41,125,44,119,114,105,116,101,84,111,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,41,58,40,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,118,97,108,117,101,34,44,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,43,116,104,105,115,46,111,112,116,105,111,110,115,46,105,110,112,117,116,95,118,97,108,117,101,115,95,115,101,112,97,114,97,116,111,114,43,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,102,114,111,109,34,44,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,100,97,116,97,40,34,116,111,34,44,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,41,125,44,99,97,108,108,79,110,83,116,97,114,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,83,116,97,114,116,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,67,104,97,110,103,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,10,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,67,104,97,110,103,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,70,105,110,105,115,104,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,70,105,110,105,115,104,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,99,97,108,108,79,110,85,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,119,114,105,116,101,84,111,73,110,112,117,116,40,41,59,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,41,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,41,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,46,99,97,108,108,40,116,104,105,115,46,111,112,116,105,111,110,115,46,115,99,111,112,101,44,116,104,105,115,46,114,101,115,117,108,116,41,59,101,108,115,101,32,116,104,105,115,46,111,112,116,105,111,110,115,46,111,110,85,112,100,97,116,101,40,116,104,105,115,46,114,101,115,117,108,116,41,125,44,10,116,111,103,103,108,101,73,110,112,117,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,116,111,103,103,108,101,67,108,97,115,115,40,34,105,114,115,45,104,105,100,100,101,110,45,105,110,112,117,116,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,63,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,116,97,98,105,110,100,101,120,34,44,45,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,114,101,109,111,118,101,80,114,111,112,40,34,116,97,98,105,110,100,101,120,34,41,59,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,61,33,116,104,105,115,46,104,97,115,95,116,97,98,95,105,110,100,101,120,125,44,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,114,101,116,117,114,110,32,100,63,116,104,105,115,46,116,111,70,105,120,101,100,40,40,98,63,97,58,97,45,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,41,47,40,100,47,49,48,48,41,41,58,40,116,104,105,115,46,110,111,95,100,105,97,112,97,115,111,110,61,33,48,44,48,41,125,44,99,111,110,118,101,114,116,84,111,86,97,108,117,101,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,44,100,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,44,99,61,98,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,101,61,100,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,44,103,44,108,44,102,61,48,44,104,61,48,59,10,105,102,40,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,105,102,40,49,48,48,61,61,61,97,41,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,99,38,38,40,102,61,103,61,99,46,108,101,110,103,116,104,41,59,101,38,38,40,102,61,108,61,101,46,108,101,110,103,116,104,41,59,103,38,38,108,38,38,40,102,61,103,62,61,108,63,103,58,108,41,59,48,62,98,38,38,40,104,61,77,97,116,104,46,97,98,115,40,98,41,44,98,61,43,40,98,43,104,41,46,116,111,70,105,120,101,100,40,102,41,44,100,61,43,40,100,43,104,41,46,116,111,70,105,120,101,100,40,102,41,41,59,97,61,40,100,45,98,41,47,49,48,48,42,97,43,98,59,40,98,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,46,116,111,83,116,114,105,110,103,40,41,46,115,112,108,105,116,40,34,46,34,41,91,49,93,41,63,97,61,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,40,97,47,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,42,61,116,104,105,115,46,111,112,116,105,111,110,115,46,115,116,101,112,44,97,61,43,97,46,116,111,70,105,120,101,100,40,48,41,41,59,104,38,38,40,97,45,61,104,41,59,104,61,98,63,43,97,46,116,111,70,105,120,101,100,40,98,46,108,101,110,103,116,104,41,58,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,104,60,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,63,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,58,104,62,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,38,38,40,104,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,41,59,114,101,116,117,114,110,32,104,125,44,99,97,108,99,87,105,116,104,83,116,101,112,58,102,117,110,99,116,105,111,110,40,97,41,123,118,97,114,32,98,61,10,77,97,116,104,46,114,111,117,110,100,40,97,47,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,41,42,116,104,105,115,46,99,111,111,114,100,115,46,112,95,115,116,101,112,59,49,48,48,60,98,38,38,40,98,61,49,48,48,41,59,49,48,48,61,61,61,97,38,38,40,98,61,49,48,48,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,98,41,125,44,99,104,101,99,107,77,105,110,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,100,63,98,45,97,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,58,97,45,98,60,99,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,105,110,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,77,97,120,73,110,116,101,114,118,97,108,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,105,102,40,33,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,114,101,116,117,114,110,32,97,59,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,98,41,59,34,102,114,111,109,34,61,61,61,10,100,63,98,45,97,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,45,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,58,97,45,98,62,99,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,40,97,61,98,43,99,46,109,97,120,95,105,110,116,101,114,118,97,108,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,99,104,101,99,107,68,105,97,112,97,115,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,97,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,97,41,59,118,97,114,32,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,98,38,38,40,98,61,99,46,109,105,110,41,59,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,100,38,38,40,100,61,99,46,109,97,120,41,59,97,60,98,38,38,40,97,61,98,41,59,97,62,100,38,38,40,97,61,100,41,59,114,101,116,117,114,110,32,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,97,41,125,44,116,111,70,105,120,101,100,58,102,117,110,99,116,105,111,110,40,97,41,123,97,61,97,46,116,111,70,105,120,101,100,40,50,48,41,59,114,101,116,117,114,110,43,97,125,44,95,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,101,110,97,98,108,101,100,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,38,38,34,102,117,110,99,116,105,111,110,34,61,61,61,116,121,112,101,111,102,32,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,63,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,40,97,41,58,10,116,104,105,115,46,112,114,101,116,116,105,102,121,40,97,41,58,97,125,44,112,114,101,116,116,105,102,121,58,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,97,46,116,111,83,116,114,105,110,103,40,41,46,114,101,112,108,97,99,101,40,47,40,92,100,123,49,44,51,125,40,63,61,40,63,58,92,100,92,100,92,100,41,43,40,63,33,92,100,41,41,41,47,103,44,34,36,49,34,43,116,104,105,115,46,111,112,116,105,111,110,115,46,112,114,101,116,116,105,102,121,95,115,101,112,97,114,97,116,111,114,41,125,44,99,104,101,99,107,69,100,103,101,115,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,105,102,40,33,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,41,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,59,48,62,97,63,97,61,48,58,97,62,49,48,48,45,98,38,38,40,97,61,49,48,48,45,98,41,59,114,101,116,117,114,110,32,116,104,105,115,46,116,111,70,105,120,101,100,40,97,41,125,44,118,97,108,105,100,97,116,101,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,61,116,104,105,115,46,114,101,115,117,108,116,44,100,61,97,46,118,97,108,117,101,115,44,99,61,100,46,108,101,110,103,116,104,44,101,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,105,110,38,38,40,97,46,109,105,110,61,43,97,46,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,109,97,120,38,38,40,97,46,109,97,120,61,43,97,46,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,38,38,40,97,46,102,114,111,109,61,43,97,46,102,114,111,109,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,38,38,40,97,46,116,111,61,43,97,46,116,111,41,59,10,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,38,38,40,97,46,115,116,101,112,61,43,97,46,115,116,101,112,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,95,109,105,110,61,43,97,46,102,114,111,109,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,95,109,97,120,61,43,97,46,102,114,111,109,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,95,109,105,110,61,43,97,46,116,111,95,109,105,110,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,95,109,97,120,61,43,97,46,116,111,95,109,97,120,41,59,34,115,116,114,105,110,103,34,61,61,61,116,121,112,101,111,102,32,97,46,103,114,105,100,95,110,117,109,38,38,40,97,46,103,114,105,100,95,110,117,109,61,43,97,46,103,114,105,100,95,110,117,109,41,59,97,46,109,97,120,60,97,46,109,105,110,38,38,40,97,46,109,97,120,61,97,46,109,105,110,41,59,105,102,40,99,41,102,111,114,40,97,46,112,95,118,97,108,117,101,115,61,91,93,44,97,46,109,105,110,61,48,44,97,46,109,97,120,61,99,45,49,44,97,46,115,116,101,112,61,49,44,97,46,103,114,105,100,95,110,117,109,61,97,46,109,97,120,44,97,46,103,114,105,100,95,115,110,97,112,61,33,48,44,101,61,48,59,101,60,99,59,101,43,43,41,123,118,97,114,32,103,61,43,100,91,101,93,59,105,115,78,97,78,40,103,41,63,103,61,100,91,101,93,58,40,100,91,101,93,61,103,44,103,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,103,41,41,59,97,46,112,95,118,97,108,117,101,115,46,112,117,115,104,40,103,41,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,10,116,121,112,101,111,102,32,97,46,102,114,111,109,124,124,105,115,78,97,78,40,97,46,102,114,111,109,41,41,97,46,102,114,111,109,61,97,46,109,105,110,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,116,111,124,124,105,115,78,97,78,40,97,46,116,111,41,41,97,46,116,111,61,97,46,109,97,120,59,34,115,105,110,103,108,101,34,61,61,61,97,46,116,121,112,101,63,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,41,58,40,97,46,102,114,111,109,60,97,46,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,109,105,110,41,44,97,46,102,114,111,109,62,97,46,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,109,97,120,41,44,97,46,116,111,60,97,46,109,105,110,38,38,40,97,46,116,111,61,97,46,109,105,110,41,44,97,46,116,111,62,97,46,109,97,120,38,38,40,97,46,116,111,61,97,46,109,97,120,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,38,38,40,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,33,61,61,97,46,102,114,111,109,38,38,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,33,61,61,97,46,116,111,38,38,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,44,97,46,102,114,111,109,62,97,46,116,111,38,38,40,97,46,102,114,111,109,61,97,46,116,111,41,44,97,46,116,111,60,97,46,102,114,111,109,38,38,40,97,46,116,111,61,97,46,102,114,111,109,41,41,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,115,116,101,112,124,124,10,105,115,78,97,78,40,97,46,115,116,101,112,41,124,124,33,97,46,115,116,101,112,124,124,48,62,97,46,115,116,101,112,41,97,46,115,116,101,112,61,49,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,105,110,38,38,97,46,102,114,111,109,60,97,46,102,114,111,109,95,109,105,110,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,102,114,111,109,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,102,114,111,109,95,109,97,120,38,38,40,97,46,102,114,111,109,61,97,46,102,114,111,109,95,109,97,120,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,105,110,38,38,97,46,116,111,60,97,46,116,111,95,109,105,110,38,38,40,97,46,116,111,61,97,46,116,111,95,109,105,110,41,59,34,110,117,109,98,101,114,34,61,61,61,116,121,112,101,111,102,32,97,46,116,111,95,109,97,120,38,38,97,46,102,114,111,109,62,97,46,116,111,95,109,97,120,38,38,40,97,46,116,111,61,97,46,116,111,95,109,97,120,41,59,105,102,40,98,41,123,98,46,109,105,110,33,61,61,97,46,109,105,110,38,38,40,98,46,109,105,110,61,97,46,109,105,110,41,59,98,46,109,97,120,33,61,61,97,46,109,97,120,38,38,40,98,46,109,97,120,61,97,46,109,97,120,41,59,105,102,40,98,46,102,114,111,109,60,98,46,109,105,110,124,124,98,46,102,114,111,109,62,98,46,109,97,120,41,98,46,102,114,111,109,61,97,46,102,114,111,109,59,105,102,40,98,46,116,111,60,98,46,109,105,110,124,124,98,46,116,111,62,98,46,109,97,120,41,98,46,116,111,61,97,46,116,111,125,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,124,124,10,33,97,46,109,105,110,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,105,110,95,105,110,116,101,114,118,97,108,41,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,48,59,105,102,40,34,110,117,109,98,101,114,34,33,61,61,116,121,112,101,111,102,32,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,105,115,78,97,78,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,124,124,33,97,46,109,97,120,95,105,110,116,101,114,118,97,108,124,124,48,62,97,46,109,97,120,95,105,110,116,101,114,118,97,108,41,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,48,59,97,46,109,105,110,95,105,110,116,101,114,118,97,108,38,38,97,46,109,105,110,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,105,110,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,59,97,46,109,97,120,95,105,110,116,101,114,118,97,108,38,38,97,46,109,97,120,95,105,110,116,101,114,118,97,108,62,97,46,109,97,120,45,97,46,109,105,110,38,38,40,97,46,109,97,120,95,105,110,116,101,114,118,97,108,61,97,46,109,97,120,45,97,46,109,105,110,41,125,44,100,101,99,111,114,97,116,101,58,102,117,110,99,116,105,111,110,40,97,44,98,41,123,118,97,114,32,100,61,34,34,44,99,61,116,104,105,115,46,111,112,116,105,111,110,115,59,99,46,112,114,101,102,105,120,38,38,40,100,43,61,99,46,112,114,101,102,105,120,41,59,100,43,61,97,59,99,46,109,97,120,95,112,111,115,116,102,105,120,38,38,40,99,46,118,97,108,117,101,115,46,108,101,110,103,116,104,38,38,97,61,61,61,99,46,112,95,118,97,108,117,101,115,91,99,46,109,97,120,93,63,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,58,98,61,61,61,99,46,109,97,120,38,38,40,100,43,61,99,46,109,97,120,95,112,111,115,116,102,105,120,44,10,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,34,32,34,41,41,41,59,99,46,112,111,115,116,102,105,120,38,38,40,100,43,61,99,46,112,111,115,116,102,105,120,41,59,114,101,116,117,114,110,32,100,125,44,117,112,100,97,116,101,70,114,111,109,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,61,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,40,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,93,41,125,44,117,112,100,97,116,101,84,111,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,116,111,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,101,114,99,101,110,116,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,80,101,114,99,101,110,116,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,112,114,101,116,116,121,61,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,38,38,10,40,116,104,105,115,46,114,101,115,117,108,116,46,116,111,95,118,97,108,117,101,61,116,104,105,115,46,111,112,116,105,111,110,115,46,118,97,108,117,101,115,91,116,104,105,115,46,114,101,115,117,108,116,46,116,111,93,41,125,44,117,112,100,97,116,101,82,101,115,117,108,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,114,101,115,117,108,116,46,109,105,110,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,105,110,59,116,104,105,115,46,114,101,115,117,108,116,46,109,97,120,61,116,104,105,115,46,111,112,116,105,111,110,115,46,109,97,120,59,116,104,105,115,46,117,112,100,97,116,101,70,114,111,109,40,41,59,116,104,105,115,46,117,112,100,97,116,101,84,111,40,41,125,44,97,112,112,101,110,100,71,114,105,100,58,102,117,110,99,116,105,111,110,40,41,123,105,102,40,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,41,123,118,97,114,32,97,61,116,104,105,115,46,111,112,116,105,111,110,115,44,98,59,118,97,114,32,100,61,97,46,109,97,120,45,97,46,109,105,110,59,118,97,114,32,99,61,97,46,103,114,105,100,95,110,117,109,44,101,61,52,44,103,61,34,34,59,116,104,105,115,46,99,97,108,99,71,114,105,100,77,97,114,103,105,110,40,41,59,105,102,40,97,46,103,114,105,100,95,115,110,97,112,41,105,102,40,53,48,60,100,41,123,99,61,53,48,47,97,46,115,116,101,112,59,118,97,114,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,46,53,41,125,101,108,115,101,32,99,61,100,47,97,46,115,116,101,112,44,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,97,46,115,116,101,112,47,40,100,47,49,48,48,41,41,59,101,108,115,101,32,102,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,47,99,41,59,52,60,99,38,38,40,101,61,51,41,59,55,60,99,38,38,40,101,61,50,41,59,49,52,60,99,38,38,40,101,61,49,41,59,50,56,60,99,38,38,40,101,61,48,41,59,10,102,111,114,40,100,61,48,59,100,60,99,43,49,59,100,43,43,41,123,118,97,114,32,107,61,101,59,118,97,114,32,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,102,42,100,41,59,49,48,48,60,104,38,38,40,104,61,49,48,48,41,59,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,100,93,61,104,59,118,97,114,32,109,61,40,104,45,102,42,40,100,45,49,41,41,47,40,107,43,49,41,59,102,111,114,40,98,61,49,59,98,60,61,107,38,38,48,33,61,61,104,59,98,43,43,41,123,118,97,114,32,110,61,116,104,105,115,46,116,111,70,105,120,101,100,40,104,45,109,42,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,32,115,109,97,108,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,110,43,39,37,34,62,60,47,115,112,97,110,62,39,125,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,112,111,108,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,60,47,115,112,97,110,62,39,59,98,61,116,104,105,115,46,99,111,110,118,101,114,116,84,111,86,97,108,117,101,40,104,41,59,98,61,97,46,118,97,108,117,101,115,46,108,101,110,103,116,104,63,97,46,112,95,118,97,108,117,101,115,91,98,93,58,116,104,105,115,46,95,112,114,101,116,116,105,102,121,40,98,41,59,103,43,61,39,60,115,112,97,110,32,99,108,97,115,115,61,34,105,114,115,45,103,114,105,100,45,116,101,120,116,32,106,115,45,103,114,105,100,45,116,101,120,116,45,39,43,100,43,39,34,32,115,116,121,108,101,61,34,108,101,102,116,58,32,39,43,104,43,39,37,34,62,39,43,98,43,34,60,47,115,112,97,110,62,34,125,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,61,77,97,116,104,46,99,101,105,108,40,99,43,49,41,59,116,104,105,115,46,36,99,97,99,104,101,46,99,111,110,116,46,97,100,100,67,108,97,115,115,40,34,105,114,115,45,119,105,116,104,45,103,114,105,100,34,41,59,10,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,104,116,109,108,40,103,41,59,116,104,105,115,46,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,40,41,125,125,44,99,97,99,104,101,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,44,98,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,98,59,97,43,43,41,123,118,97,114,32,100,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,46,102,105,110,100,40,34,46,106,115,45,103,114,105,100,45,116,101,120,116,45,34,43,97,41,59,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,46,112,117,115,104,40,100,41,125,116,104,105,115,46,99,97,108,99,71,114,105,100,76,97,98,101,108,115,40,41,125,44,99,97,108,99,71,114,105,100,76,97,98,101,108,115,58,102,117,110,99,116,105,111,110,40,41,123,118,97,114,32,97,59,118,97,114,32,98,61,91,93,59,118,97,114,32,100,61,91,93,44,99,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,119,91,97,93,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,47,10,50,41,44,98,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,91,97,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,41,44,100,91,97,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,97,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,97,93,41,59,116,104,105,115,46,111,112,116,105,111,110,115,46,102,111,114,99,101,95,101,100,103,101,115,38,38,40,98,91,48,93,60,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,98,91,48,93,61,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,100,91,48,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,98,91,48,93,43,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,48,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,48,93,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,44,100,91,99,45,49,93,62,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,38,38,40,100,91,99,45,49,93,61,49,48,48,43,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,44,98,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,100,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,41,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,99,45,49,93,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,112,91,99,45,49,93,45,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,41,41,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,50,44,10,98,44,100,41,59,116,104,105,115,46,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,40,52,44,98,44,100,41,59,102,111,114,40,97,61,48,59,97,60,99,59,97,43,43,41,98,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,97,93,91,48,93,44,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,33,61,61,78,117,109,98,101,114,46,80,79,83,73,84,73,86,69,95,73,78,70,73,78,73,84,89,38,38,40,98,46,115,116,121,108,101,46,109,97,114,103,105,110,76,101,102,116,61,45,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,120,91,97,93,43,34,37,34,41,125,44,99,97,108,99,71,114,105,100,67,111,108,108,105,115,105,111,110,58,102,117,110,99,116,105,111,110,40,97,44,98,44,100,41,123,118,97,114,32,99,44,101,61,116,104,105,115,46,99,111,111,114,100,115,46,98,105,103,95,110,117,109,59,102,111,114,40,99,61,48,59,99,60,101,59,99,43,61,97,41,123,118,97,114,32,103,61,99,43,97,47,50,59,105,102,40,103,62,61,101,41,98,114,101,97,107,59,118,97,114,32,102,61,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,95,108,97,98,101,108,115,91,103,93,91,48,93,59,102,46,115,116,121,108,101,46,118,105,115,105,98,105,108,105,116,121,61,100,91,99,93,60,61,98,91,103,93,63,34,118,105,115,105,98,108,101,34,58,34,104,105,100,100,101,110,34,125,125,44,99,97,108,99,71,114,105,100,77,97,114,103,105,110,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,111,112,116,105,111,110,115,46,103,114,105,100,95,109,97,114,103,105,110,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,61,116,104,105,115,46,36,99,97,99,104,101,46,114,115,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,38,38,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,61,10,34,115,105,110,103,108,101,34,61,61,61,116,104,105,115,46,111,112,116,105,111,110,115,46,116,121,112,101,63,116,104,105,115,46,36,99,97,99,104,101,46,115,95,115,105,110,103,108,101,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,58,116,104,105,115,46,36,99,97,99,104,101,46,115,95,102,114,111,109,46,111,117,116,101,114,87,105,100,116,104,40,33,49,41,44,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,119,95,104,97,110,100,108,101,47,116,104,105,115,46,99,111,111,114,100,115,46,119,95,114,115,42,49,48,48,41,44,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,61,116,104,105,115,46,116,111,70,105,120,101,100,40,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,47,50,45,46,49,41,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,119,105,100,116,104,61,116,104,105,115,46,116,111,70,105,120,101,100,40,49,48,48,45,116,104,105,115,46,99,111,111,114,100,115,46,112,95,104,97,110,100,108,101,41,43,34,37,34,44,116,104,105,115,46,36,99,97,99,104,101,46,103,114,105,100,91,48,93,46,115,116,121,108,101,46,108,101,102,116,61,116,104,105,115,46,99,111,111,114,100,115,46,103,114,105,100,95,103,97,112,43,34,37,34,41,41,125,44,117,112,100,97,116,101,58,102,117,110,99,116,105,111,110,40,97,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,105,115,95,117,112,100,97,116,101,61,33,48,44,116,104,105,115,46,111,112,116,105,111,110,115,46,102,114,111,109,61,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,111,112,116,105,111,110,115,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,102,114,111,109,61,10,116,104,105,115,46,114,101,115,117,108,116,46,102,114,111,109,44,116,104,105,115,46,117,112,100,97,116,101,95,99,104,101,99,107,46,116,111,61,116,104,105,115,46,114,101,115,117,108,116,46,116,111,44,116,104,105,115,46,111,112,116,105,111,110,115,61,102,46,101,120,116,101,110,100,40,116,104,105,115,46,111,112,116,105,111,110,115,44,97,41,44,116,104,105,115,46,118,97,108,105,100,97,116,101,40,41,44,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,97,41,44,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,105,110,105,116,40,33,48,41,41,125,44,114,101,115,101,116,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,117,112,100,97,116,101,82,101,115,117,108,116,40,41,44,116,104,105,115,46,117,112,100,97,116,101,40,41,41,125,44,100,101,115,116,114,111,121,58,102,117,110,99,116,105,111,110,40,41,123,116,104,105,115,46,105,110,112,117,116,38,38,40,116,104,105,115,46,116,111,103,103,108,101,73,110,112,117,116,40,41,44,116,104,105,115,46,36,99,97,99,104,101,46,105,110,112,117,116,46,112,114,111,112,40,34,114,101,97,100,111,110,108,121,34,44,33,49,41,44,102,46,100,97,116,97,40,116,104,105,115,46,105,110,112,117,116,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,117,108,108,41,44,116,104,105,115,46,114,101,109,111,118,101,40,41,44,116,104,105,115,46,111,112,116,105,111,110,115,61,116,104,105,115,46,105,110,112,117,116,61,110,117,108,108,41,125,125,59,102,46,102,110,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,61,102,117,110,99,116,105,111,110,40,97,41,123,114,101,116,117,114,110,32,116,104,105,115,46,101,97,99,104,40,102,117,110,99,116,105,111,110,40,41,123,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,41,124,124,10,102,46,100,97,116,97,40,116,104,105,115,44,34,105,111,110,82,97,110,103,101,83,108,105,100,101,114,34,44,110,101,119,32,113,40,116,104,105,115,44,97,44,116,43,43,41,41,125,41,125,59,40,102,117,110,99,116,105,111,110,40,41,123,102,111,114,40,118,97,114,32,97,61,48,44,98,61,91,34,109,115,34,44,34,109,111,122,34,44,34,119,101,98,107,105,116,34,44,34,111,34,93,44,100,61,48,59,100,60,98,46,108,101,110,103,116,104,38,38,33,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,59,43,43,100,41,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,44,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,107,91,98,91,100,93,43,34,67,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,124,124,107,91,98,91,100,93,43,34,67,97,110,99,101,108,82,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,34,93,59,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,114,101,113,117,101,115,116,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,102,117,110,99,116,105,111,110,40,98,44,100,41,123,118,97,114,32,99,61,40,110,101,119,32,68,97,116,101,41,46,103,101,116,84,105,109,101,40,41,44,101,61,77,97,116,104,46,109,97,120,40,48,44,49,54,45,40,99,45,97,41,41,44,102,61,107,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,40,41,123,98,40,99,43,101,41,125,44,101,41,59,97,61,99,43,101,59,114,101,116,117,114,110,32,102,125,41,59,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,124,124,40,107,46,99,97,110,99,101,108,65,110,105,109,97,116,105,111,110,70,114,97,109,101,61,10,102,117,110,99,116,105,111,110,40,97,41,123,99,108,101,97,114,84,105,109,101,111,117,116,40,97,41,125,41,125,41,40,41,125,41,59,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,49,48,52,50,48,51,53,50,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,98,121,116,101,115,41,32,123,10,32,32,32,32,105,102,32,40,98,121,116,101,115,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,63,32,66,34,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,104,114,101,115,104,32,61,32,49,48,48,48,59,10,32,32,32,32,105,102,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,60,32,116,104,114,101,115,104,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,32,43,32,39,32,66,39,59,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,117,110,105,116,115,32,61,32,91,39,107,39,44,32,39,77,39,44,32,39,71,39,44,32,39,84,39,44,32,39,80,39,44,32,39,69,39,44,32,39,90,39,44,32,39,89,39,93,59,10,32,32,32,32,108,101,116,32,117,32,61,32,45,49,59,10,32,32,32,32,100,111,32,123,10,32,32,32,32,32,32,32,32,98,121,116,101,115,32,47,61,32,116,104,114,101,115,104,59,10,32,32,32,32,32,32,32,32,43,43,117,59,10,32,32,32,32,125,32,119,104,105,108,101,32,40,77,97,116,104,46,97,98,115,40,98,121,116,101,115,41,32,62,61,32,116,104,114,101,115,104,32,38,38,32,117,32,60,32,117,110,105,116,115,46,108,101,110,103,116,104,32,45,32,49,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,98,121,116,101,115,46,116,111,70,105,120,101,100,40,49,41,32,43,32,117,110,105,116,115,91,117,93,59,10,125,10,10,47,42,42,10,32,42,32,104,116,116,112,115,58,47,47,115,116,97,99,107,111,118,101,114,102,108,111,119,46,99,111,109,47,113,117,101,115,116,105,111,110,115,47,54,51,49,50,57,57,51,10,32,42,47,10,102,117,110,99,116,105,111,110,32,104,117,109,97,110,84,105,109,101,40,115,101,99,95,110,117,109,41,32,123,10,32,32,32,32,115,101,99,95,110,117,109,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,41,59,10,32,32,32,32,108,101,116,32,104,111,117,114,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,115,101,99,95,110,117,109,32,47,32,51,54,48,48,41,59,10,32,32,32,32,108,101,116,32,109,105,110,117,116,101,115,32,61,32,77,97,116,104,46,102,108,111,111,114,40,40,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,41,32,47,32,54,48,41,59,10,32,32,32,32,108,101,116,32,115,101,99,111,110,100,115,32,61,32,115,101,99,95,110,117,109,32,45,32,40,104,111,117,114,115,32,42,32,51,54,48,48,41,32,45,32,40,109,105,110,117,116,101,115,32,42,32,54,48,41,59,10,10,32,32,32,32,105,102,32,40,104,111,117,114,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,104,111,117,114,115,32,61,32,34,48,34,32,43,32,104,111,117,114,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,109,105,110,117,116,101,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,109,105,110,117,116,101,115,32,61,32,34,48,34,32,43,32,109,105,110,117,116,101,115,59,10,32,32,32,32,125,10,32,32,32,32,105,102,32,40,115,101,99,111,110,100,115,32,60,32,49,48,41,32,123,10,32,32,32,32,32,32,32,32,115,101,99,111,110,100,115,32,61,32,34,48,34,32,43,32,115,101,99,111,110,100,115,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,104,111,117,114,115,32,43,32,34,58,34,32,43,32,109,105,110,117,116,101,115,32,43,32,34,58,34,32,43,32,115,101,99,111,110,100,115,59,10,125,10,10,102,117,110,99,116,105,111,110,32,100,101,98,111,117,110,99,101,40,102,117,110,99,44,32,119,97,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,109,101,111,117,116,59,10,32,32,32,32,114,101,116,117,114,110,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,120,116,32,61,32,116,104,105,115,44,32,97,114,103,115,32,61,32,97,114,103,117,109,101,110,116,115,59,10,32,32,32,32,32,32,32,32,108,101,116,32,108,97,116,101,114,32,61,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,32,32,32,32,125,59,10,32,32,32,32,32,32,32,32,99,108,101,97,114,84,105,109,101,111,117,116,40,116,105,109,101,111,117,116,41,59,10,32,32,32,32,32,32,32,32,116,105,109,101,111,117,116,32,61,32,115,101,116,84,105,109,101,111,117,116,40,108,97,116,101,114,44,32,119,97,105,116,41,59,10,32,32,32,32,32,32,32,32,102,117,110,99,46,97,112,112,108,121,40,99,111,110,116,101,120,116,44,32,97,114,103,115,41,59,10,32,32,32,32,125,59,10,125,10,10,102,117,110,99,116,105,111,110,32,108,117,109,40,99,41,32,123,10,32,32,32,32,99,32,61,32,99,46,115,117,98,115,116,114,105,110,103,40,49,41,59,10,32,32,32,32,108,101,116,32,114,103,98,32,61,32,112,97,114,115,101,73,110,116,40,99,44,32,49,54,41,59,10,32,32,32,32,108,101,116,32,114,32,61,32,40,114,103,98,32,62,62,32,49,54,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,103,32,61,32,40,114,103,98,32,62,62,32,56,41,32,38,32,48,120,102,102,59,10,32,32,32,32,108,101,116,32,98,32,61,32,40,114,103,98,32,62,62,32,48,41,32,38,32,48,120,102,102,59,10,10,32,32,32,32,114,101,116,117,114,110,32,48,46,50,49,50,54,32,42,32,114,32,43,32,48,46,55,49,53,50,32,42,32,103,32,43,32,48,46,48,55,50,50,32,42,32,98,59,10,125,10,47,42,42,10,32,42,32,69,110,97,98,108,101,32,103,105,102,32,108,111,97,100,105,110,103,32,111,110,32,104,111,118,101,114,10,32,42,47,10,102,117,110,99,116,105,111,110,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,108,101,101,32,61,32,97,114,103,117,109,101,110,116,115,46,99,97,108,108,101,101,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,118,101,114,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,116,114,117,101,59,10,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,115,101,116,84,105,109,101,111,117,116,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,109,111,118,101,69,118,101,110,116,76,105,115,116,101,110,101,114,40,39,109,111,117,115,101,111,118,101,114,39,44,32,99,97,108,108,101,101,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,76,111,97,100,32,103,105,102,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,32,54,48,48,41,59,10,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,109,111,117,115,101,111,117,116,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,47,47,82,101,115,101,116,32,116,105,109,101,114,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,109,111,117,115,101,83,116,97,121,101,100,79,118,101,114,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,114,101,32,61,32,82,101,103,69,120,112,40,47,60,109,97,114,107,62,47,103,41,59,10,10,32,32,32,32,99,111,110,115,116,32,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,32,61,32,40,97,44,32,98,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,98,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,32,45,32,97,46,109,97,116,99,104,40,114,101,41,46,108,101,110,103,116,104,59,10,32,32,32,32,125,59,10,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,93,46,115,111,114,116,40,115,111,114,116,66,121,77,97,116,104,67,111,117,110,116,41,91,48,93,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,117,110,100,101,102,105,110,101,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,32,123,10,32,32,32,32,105,102,32,40,104,105,116,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,104,105,103,104,108,105,103,104,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,110,97,109,101,46,110,71,114,97,109,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,116,108,101,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,104,105,116,91,34,104,105,103,104,108,105,103,104,116,34,93,91,34,110,97,109,101,46,110,71,114,97,109,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,116,105,116,108,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,97,100,100,86,105,100,83,114,99,40,117,114,108,44,32,109,105,109,101,44,32,118,105,100,101,111,41,32,123,10,32,32,32,32,108,101,116,32,118,105,100,83,111,117,114,99,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,111,117,114,99,101,34,41,59,10,32,32,32,32,118,105,100,83,111,117,114,99,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,117,114,108,41,59,10,32,32,32,32,105,102,32,40,118,105,100,101,111,46,99,97,110,80,108,97,121,84,121,112,101,40,109,105,109,101,41,41,32,123,10,32,32,32,32,32,32,32,32,118,105,100,83,111,117,114,99,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,109,105,109,101,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,118,105,100,83,111,117,114,99,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,34,118,105,100,101,111,47,119,101,98,109,34,41,59,10,32,32,32,32,125,10,32,32,32,32,118,105,100,101,111,46,97,112,112,101,110,100,67,104,105,108,100,40,118,105,100,83,111,117,114,99,101,41,59,10,125,10,10,102,117,110,99,116,105,111,110,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,32,123,10,32,32,32,32,99,111,110,115,116,32,118,105,100,101,111,99,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,59,10,32,32,32,32,114,101,116,117,114,110,32,118,105,100,101,111,99,32,33,61,61,32,34,104,101,118,99,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,34,109,112,101,103,50,118,105,100,101,111,34,32,38,38,32,118,105,100,101,111,99,32,33,61,61,32,34,119,109,118,51,34,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,119,44,32,104,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,99,97,108,99,59,10,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,47,32,119,32,47,32,104,41,32,62,61,32,49,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,54,52,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,54,52,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,99,97,108,99,32,61,32,119,32,62,32,104,10,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,47,32,119,32,47,32,104,41,32,62,61,32,50,55,50,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,63,32,40,49,55,53,32,42,32,119,32,47,32,104,41,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,10,32,32,32,32,32,32,32,32,32,32,32,32,58,32,49,55,53,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,101,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,104,101,105,103,104,116,58,32,36,123,99,97,108,99,125,112,120,96,41,59,10,32,32,32,32,114,101,116,117,114,110,32,101,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,108,101,116,32,101,120,116,101,110,115,105,111,110,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,101,120,116,101,110,115,105,111,110,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,33,61,61,32,34,34,32,63,32,34,46,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,101,120,116,101,110,115,105,111,110,34,93,32,58,32,34,34,59,10,10,32,32,32,32,97,112,112,108,121,78,97,109,101,84,111,84,105,116,108,101,40,104,105,116,44,32,116,105,116,108,101,44,32,101,120,116,101,110,115,105,111,110,41,59,10,10,32,32,32,32,116,105,116,108,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,105,116,108,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,32,43,32,34,47,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,110,97,109,101,34,93,32,43,32,101,120,116,101,110,115,105,111,110,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,105,116,108,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,91,93,59,10,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,105,100,101,111,99,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,46,114,101,112,108,97,99,101,40,34,32,34,44,32,34,34,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,32,32,32,32,99,97,115,101,32,34,97,117,100,105,111,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,102,111,114,109,97,116,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,109,97,116,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,97,117,100,105,111,99,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,102,111,114,109,97,116,84,97,103,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,32,32,32,32,125,10,32,32,32,32,47,47,32,85,115,101,114,32,116,97,103,115,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,116,97,103,34,41,41,32,123,10,32,32,32,32,32,32,32,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,116,97,103,34,93,46,102,111,114,69,97,99,104,40,116,97,103,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,117,115,101,114,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,98,97,100,103,101,45,117,115,101,114,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,111,107,101,110,115,46,108,101,110,103,116,104,32,62,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,98,103,32,61,32,34,35,34,32,43,32,116,111,107,101,110,115,91,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,102,103,32,61,32,108,117,109,40,116,111,107,101,110,115,91,49,93,41,32,62,32,52,48,32,63,32,34,35,48,48,48,34,32,58,32,34,35,102,102,102,34,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,96,98,97,99,107,103,114,111,117,110,100,45,99,111,108,111,114,58,32,36,123,98,103,125,59,32,99,111,108,111,114,58,32,36,123,102,103,125,96,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,110,97,109,101,32,61,32,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,91,116,111,107,101,110,115,91,48,93,46,115,112,108,105,116,40,34,46,34,41,46,108,101,110,103,116,104,32,45,32,49,93,59,10,32,32,32,32,32,32,32,32,32,32,32,32,117,115,101,114,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,110,97,109,101,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,115,46,112,117,115,104,40,117,115,101,114,84,97,103,41,59,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,97,103,115,10,125,10,10,47,42,42,10,32,42,10,32,42,32,64,112,97,114,97,109,32,104,105,116,10,32,42,32,64,114,101,116,117,114,110,115,32,123,69,108,101,109,101,110,116,125,10,32,42,47,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,41,32,123,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,34,41,59,10,10,32,32,32,32,108,101,116,32,100,111,99,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,32,100,111,99,117,109,101,110,116,34,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,10,32,32,32,32,47,47,84,105,116,108,101,10,32,32,32,32,108,101,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,116,101,120,116,34,41,59,10,10,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,109,105,109,101,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,33,61,61,32,110,117,108,108,41,32,123,10,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,110,117,108,108,59,10,32,32,32,32,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,112,111,115,105,116,105,111,110,58,32,114,101,108,97,116,105,118,101,34,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,102,97,108,115,101,41,59,10,10,32,32,32,32,32,32,32,32,47,47,84,104,117,109,98,110,97,105,108,32,111,118,101,114,108,97,121,10,32,32,32,32,32,32,32,32,115,119,105,116,99,104,32,40,109,105,109,101,67,97,116,101,103,111,114,121,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,105,109,97,103,101,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,111,108,117,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,43,32,34,120,34,32,43,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,111,108,117,116,105,111,110,66,97,100,103,101,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,32,72,111,118,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,118,105,100,101,111,99,34,93,32,61,61,61,32,34,103,105,102,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,103,105,102,79,118,101,114,40,116,104,117,109,98,110,97,105,108,44,32,104,105,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,98,114,101,97,107,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,115,101,32,34,118,105,100,101,111,34,58,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,47,47,68,117,114,97,116,105,111,110,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,100,117,114,97,116,105,111,110,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,111,118,101,114,108,97,121,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,100,117,114,97,116,105,111,110,66,97,100,103,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,97,100,103,101,32,98,97,100,103,101,45,114,101,115,111,108,117,116,105,111,110,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,117,114,97,116,105,111,110,66,97,100,103,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,84,105,109,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,100,117,114,97,116,105,111,110,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,46,97,112,112,101,110,100,67,104,105,108,100,40,100,117,114,97,116,105,111,110,66,97,100,103,101,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,32,84,97,103,115,10,32,32,32,32,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,67,111,110,116,101,110,116,10,32,32,32,32,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,65,117,100,105,111,10,32,32,32,32,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,97,117,100,105,111,34,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,97,117,100,105,111,99,34,41,41,32,123,10,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,97,117,100,105,111,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,117,100,105,111,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,117,100,105,111,45,102,105,116,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,121,112,101,34,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,97,117,100,105,111,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,97,117,100,105,111,41,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,32,33,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,79,118,101,114,108,97,121,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,32,32,32,32,100,111,99,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,32,32,32,32,100,111,99,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,100,111,99,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,115,109,97,108,108,41,32,123,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,59,10,10,32,32,32,32,105,102,32,40,109,105,109,101,67,97,116,101,103,111,114,121,32,61,61,61,32,34,118,105,100,101,111,34,32,38,38,32,115,104,111,117,108,100,80,108,97,121,86,105,100,101,111,40,104,105,116,41,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,118,105,100,101,111,34,41,59,10,32,32,32,32,32,32,32,32,97,100,100,86,105,100,83,114,99,40,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,44,32,116,104,117,109,98,110,97,105,108,41,59,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,116,121,108,101,46,99,117,114,115,111,114,32,61,32,34,112,111,105,110,116,101,114,34,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,116,105,116,108,101,32,61,32,34,69,110,108,97,114,103,101,34,59,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,99,108,97,115,115,76,105,115,116,46,114,101,109,111,118,101,40,34,119,114,97,112,112,101,114,45,115,109,34,44,32,34,109,114,45,49,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,112,97,114,101,110,116,69,108,101,109,101,110,116,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,109,101,100,105,97,45,101,120,112,97,110,100,101,100,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,114,101,108,111,97,100,34,44,32,34,110,111,110,101,34,41,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,112,111,115,116,101,114,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,100,98,108,99,108,105,99,107,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,111,110,116,114,111,108,115,34,44,32,34,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,119,101,98,107,105,116,82,101,113,117,101,115,116,70,117,108,108,83,99,114,101,101,110,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,114,101,113,117,101,115,116,70,117,108,108,115,99,114,101,101,110,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,111,115,116,101,114,32,61,32,110,101,119,32,73,109,97,103,101,40,41,59,10,32,32,32,32,32,32,32,32,112,111,115,116,101,114,46,115,114,99,32,61,32,116,104,117,109,98,110,97,105,108,46,103,101,116,65,116,116,114,105,98,117,116,101,40,39,112,111,115,116,101,114,39,41,59,10,32,32,32,32,32,32,32,32,112,111,115,116,101,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,119,105,100,116,104,34,41,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,32,62,32,51,50,32,38,38,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,32,62,32,51,50,41,10,32,32,32,32,32,32,32,32,124,124,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,61,61,61,32,34,97,112,112,108,105,99,97,116,105,111,110,47,112,100,102,34,10,32,32,32,32,32,32,32,32,124,124,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,61,61,61,32,34,97,112,112,108,105,99,97,116,105,111,110,47,101,112,117,98,43,122,105,112,34,10,32,32,32,32,32,32,32,32,124,124,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,32,61,61,61,32,34,97,112,112,108,105,99,97,116,105,111,110,47,120,45,99,98,122,34,10,32,32,32,32,32,32,32,32,124,124,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,102,111,110,116,95,110,97,109,101,34,41,10,32,32,32,32,41,32,123,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,105,109,103,34,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,115,109,97,108,108,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,116,45,115,109,34,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,105,109,103,45,116,111,112,32,102,105,116,34,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,114,99,34,44,32,96,116,47,36,123,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,105,110,100,101,120,34,93,125,47,36,123,104,105,116,91,34,95,105,100,34,93,125,96,41,59,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,112,108,97,99,101,104,111,108,100,101,114,32,61,32,109,97,107,101,80,108,97,99,101,104,111,108,100,101,114,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,119,105,100,116,104,34,93,44,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,104,101,105,103,104,116,34,93,44,32,115,109,97,108,108,41,59,10,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,112,108,97,99,101,104,111,108,100,101,114,41,59,10,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,101,114,114,111,114,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,32,32,32,32,116,104,117,109,98,110,97,105,108,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,108,111,97,100,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,108,97,99,101,104,111,108,100,101,114,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,104,117,109,98,110,97,105,108,41,59,10,32,32,32,32,32,32,32,32,125,41,59,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,116,104,117,109,98,110,97,105,108,59,10,125,10,10,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,41,32,123,10,10,32,32,32,32,108,101,116,32,109,105,109,101,67,97,116,101,103,111,114,121,32,61,32,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,109,105,109,101,34,93,46,115,112,108,105,116,40,34,47,34,41,91,48,93,59,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,84,97,103,115,40,104,105,116,44,32,109,105,109,101,67,97,116,101,103,111,114,121,41,59,10,10,32,32,32,32,108,101,116,32,105,109,103,87,114,97,112,112,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,105,109,103,87,114,97,112,112,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,97,108,105,103,110,45,115,101,108,102,45,115,116,97,114,116,32,109,114,45,49,32,119,114,97,112,112,101,114,45,115,109,34,41,59,10,10,32,32,32,32,108,101,116,32,109,101,100,105,97,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,109,101,100,105,97,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,109,101,100,105,97,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,110,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,108,105,110,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,45,105,116,101,109,32,102,108,101,120,45,99,111,108,117,109,110,32,97,108,105,103,110,45,105,116,101,109,115,45,115,116,97,114,116,34,41,59,10,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,32,61,32,109,97,107,101,84,105,116,108,101,40,104,105,116,41,59,10,10,32,32,32,32,108,101,116,32,108,105,110,107,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,97,34,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,104,114,101,102,34,44,32,34,102,47,34,32,43,32,104,105,116,91,34,95,105,100,34,93,41,59,10,32,32,32,32,108,105,110,107,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,116,97,114,103,101,116,34,44,32,34,95,98,108,97,110,107,34,41,59,10,32,32,32,32,108,105,110,107,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,41,59,10,10,32,32,32,32,99,111,110,115,116,32,116,105,116,108,101,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,105,116,108,101,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,102,105,108,101,45,116,105,116,108,101,34,41,59,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,110,107,41,59,10,10,32,32,32,32,108,105,110,101,46,97,112,112,101,110,100,67,104,105,108,100,40,109,101,100,105,97,41,59,10,10,32,32,32,32,108,101,116,32,116,104,117,109,98,110,97,105,108,32,61,32,109,97,107,101,84,104,117,109,98,110,97,105,108,40,109,105,109,101,67,97,116,101,103,111,114,121,44,32,104,105,116,44,32,105,109,103,87,114,97,112,112,101,114,44,32,116,114,117,101,41,59,10,32,32,32,32,105,102,32,40,116,104,117,109,98,110,97,105,108,41,32,123,10,32,32,32,32,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,105,109,103,87,114,97,112,112,101,114,41,59,10,32,32,32,32,125,10,32,32,32,32,109,101,100,105,97,46,97,112,112,101,110,100,67,104,105,108,100,40,116,105,116,108,101,68,105,118,41,59,10,10,32,32,32,32,47,47,32,67,111,110,116,101,110,116,10,32,32,32,32,108,101,116,32,99,111,110,116,101,110,116,72,108,32,61,32,103,101,116,67,111,110,116,101,110,116,72,105,103,104,108,105,103,104,116,40,104,105,116,41,59,10,32,32,32,32,105,102,32,40,99,111,110,116,101,110,116,72,108,32,33,61,61,32,117,110,100,101,102,105,110,101,100,41,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,111,110,116,101,110,116,68,105,118,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,111,110,116,101,110,116,45,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,68,105,118,46,105,110,115,101,114,116,65,100,106,97,99,101,110,116,72,84,77,76,40,39,97,102,116,101,114,98,101,103,105,110,39,44,32,99,111,110,116,101,110,116,72,108,41,59,10,32,32,32,32,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,99,111,110,116,101,110,116,68,105,118,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,34,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,116,97,103,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,115,91,105,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,47,47,83,105,122,101,32,116,97,103,10,32,32,32,32,108,101,116,32,115,105,122,101,84,97,103,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,109,97,108,108,34,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,104,105,116,91,34,95,115,111,117,114,99,101,34,93,91,34,115,105,122,101,34,93,41,41,41,59,10,32,32,32,32,115,105,122,101,84,97,103,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,116,101,120,116,45,109,117,116,101,100,34,41,59,10,32,32,32,32,116,97,103,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,84,97,103,41,59,10,10,32,32,32,32,116,105,116,108,101,68,105,118,46,97,112,112,101,110,100,67,104,105,108,100,40,116,97,103,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,108,105,110,101,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,32,123,10,32,32,32,32,99,111,110,115,116,32,101,108,101,109,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,101,108,101,109,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,34,41,59,10,32,32,32,32,99,111,110,115,116,32,98,97,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,114,111,103,114,101,115,115,45,98,97,114,32,112,114,111,103,114,101,115,115,45,98,97,114,45,115,116,114,105,112,101,100,32,112,114,111,103,114,101,115,115,45,98,97,114,45,97,110,105,109,97,116,101,100,34,41,59,10,32,32,32,32,98,97,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,115,116,121,108,101,34,44,32,34,119,105,100,116,104,58,32,49,48,48,37,34,41,59,10,32,32,32,32,101,108,101,109,46,97,112,112,101,110,100,67,104,105,108,100,40,98,97,114,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,101,108,101,109,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,112,97,103,101,45,105,110,100,105,99,97,116,111,114,32,102,111,110,116,45,119,101,105,103,104,116,45,108,105,103,104,116,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,97,108,117,101,34,41,10,32,32,32,32,32,32,32,32,63,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,91,34,118,97,108,117,101,34,93,32,58,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,59,10,32,32,32,32,112,97,103,101,73,110,100,105,99,97,116,111,114,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,100,111,99,67,111,117,110,116,32,43,32,34,32,47,32,34,32,43,32,116,111,116,97,108,72,105,116,115,41,41,59,10,32,32,32,32,114,101,116,117,114,110,32,112,97,103,101,73,110,100,105,99,97,116,111,114,59,10,125,10,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,32,123,10,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,32,115,116,97,116,34,41,59,10,32,32,32,32,108,101,116,32,115,116,97,116,115,67,97,114,100,66,111,100,121,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,98,111,100,121,34,41,59,10,10,32,32,32,32,99,111,110,115,116,32,114,101,115,117,108,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,45,103,114,111,117,112,32,98,116,110,45,103,114,111,117,112,45,116,111,103,103,108,101,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,100,97,116,97,45,116,111,103,103,108,101,34,44,32,34,98,117,116,116,111,110,115,34,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,115,116,121,108,101,46,99,115,115,70,108,111,97,116,32,61,32,34,114,105,103,104,116,34,59,10,10,32,32,32,32,99,111,110,115,116,32,108,105,115,116,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,76,105,115,116,34,41,41,59,10,10,32,32,32,32,99,111,110,115,116,32,103,114,105,100,77,111,100,101,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,108,97,98,101,108,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,98,116,110,32,98,116,110,45,112,114,105,109,97,114,121,34,41,59,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,34,71,114,105,100,34,41,41,59,10,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,103,114,105,100,77,111,100,101,41,59,10,32,32,32,32,114,101,115,117,108,116,77,111,100,101,46,97,112,112,101,110,100,67,104,105,108,100,40,108,105,115,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,103,114,105,100,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,108,105,115,116,77,111,100,101,46,99,108,97,115,115,76,105,115,116,46,97,100,100,40,34,97,99,116,105,118,101,34,41,10,32,32,32,32,125,10,10,32,32,32,32,103,114,105,100,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,34,103,114,105,100,34,59,10,32,32,32,32,32,32,32,32,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,109,111,100,101,34,44,32,109,111,100,101,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,32,32,32,32,108,105,115,116,77,111,100,101,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,109,111,100,101,32,61,32,34,108,105,115,116,34,59,10,32,32,32,32,32,32,32,32,108,111,99,97,108,83,116,111,114,97,103,101,46,115,101,116,73,116,101,109,40,34,109,111,100,101,34,44,32,109,111,100,101,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,108,101,116,32,115,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,115,112,97,110,34,41,59,10,32,32,32,32,99,111,110,115,116,32,116,111,116,97,108,72,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,46,104,97,115,79,119,110,80,114,111,112,101,114,116,121,40,34,118,97,108,117,101,34,41,10,32,32,32,32,32,32,32,32,63,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,91,34,118,97,108,117,101,34,93,32,58,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,116,111,116,97,108,34,93,59,10,32,32,32,32,115,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,116,111,116,97,108,72,105,116,115,32,43,32,34,32,114,101,115,117,108,116,115,32,105,110,32,34,32,43,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,116,111,111,107,34,93,32,43,32,34,109,115,34,41,41,59,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,41,59,10,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,77,111,100,101,41,59,10,10,32,32,32,32,105,102,32,40,116,111,116,97,108,72,105,116,115,32,33,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,115,105,122,101,83,116,97,116,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,83,116,97,116,46,97,112,112,101,110,100,67,104,105,108,100,40,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,84,101,120,116,78,111,100,101,40,104,117,109,97,110,70,105,108,101,83,105,122,101,40,115,101,97,114,99,104,82,101,115,117,108,116,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,111,116,97,108,95,115,105,122,101,34,93,91,34,118,97,108,117,101,34,93,41,41,41,59,10,32,32,32,32,32,32,32,32,115,116,97,116,115,67,97,114,100,66,111,100,121,46,97,112,112,101,110,100,67,104,105,108,100,40,115,105,122,101,83,116,97,116,41,59,10,32,32,32,32,125,10,10,32,32,32,32,115,116,97,116,115,67,97,114,100,46,97,112,112,101,110,100,67,104,105,108,100,40,115,116,97,116,115,67,97,114,100,66,111,100,121,41,59,10,10,32,32,32,32,114,101,116,117,114,110,32,115,116,97,116,115,67,97,114,100,59,10,125,10,10,102,117,110,99,116,105,111,110,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,32,123,10,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,100,111,99,117,109,101,110,116,46,99,114,101,97,116,101,69,108,101,109,101,110,116,40,34,100,105,118,34,41,59,10,10,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,99,97,114,100,45,99,111,108,117,109,110,115,34,41,59,10,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,115,101,116,65,116,116,114,105,98,117,116,101,40,34,99,108,97,115,115,34,44,32,34,108,105,115,116,45,103,114,111,117,112,34,41,59,10,32,32,32,32,125,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,59,10,125,10,99,111,110,115,116,32,83,73,90,69,32,61,32,52,48,59,10,108,101,116,32,109,105,109,101,77,97,112,32,61,32,91,93,59,10,108,101,116,32,116,97,103,77,97,112,32,61,32,91,93,59,10,108,101,116,32,109,105,109,101,84,114,101,101,59,10,108,101,116,32,116,97,103,84,114,101,101,59,10,10,108,101,116,32,115,101,97,114,99,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,66,97,114,34,41,59,10,108,101,116,32,112,97,116,104,66,97,114,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,112,97,116,104,66,97,114,34,41,59,10,108,101,116,32,115,99,114,111,108,108,95,105,100,32,61,32,110,117,108,108,59,10,108,101,116,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,108,101,116,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,108,101,116,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,108,101,116,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,10,108,101,116,32,109,111,100,101,59,10,105,102,32,40,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,109,111,100,101,34,41,32,61,61,61,32,110,117,108,108,41,32,123,10,32,32,32,32,109,111,100,101,32,61,32,34,103,114,105,100,34,59,10,125,32,101,108,115,101,32,123,10,32,32,32,32,109,111,100,101,32,61,32,108,111,99,97,108,83,116,111,114,97,103,101,46,103,101,116,73,116,101,109,40,34,109,111,100,101,34,41,10,125,10,10,106,81,117,101,114,121,91,34,106,115,111,110,80,111,115,116,34,93,32,61,32,102,117,110,99,116,105,111,110,32,40,117,114,108,44,32,100,97,116,97,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,106,81,117,101,114,121,46,97,106,97,120,40,123,10,32,32,32,32,32,32,32,32,117,114,108,58,32,117,114,108,44,10,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,112,111,115,116,34,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,74,83,79,78,46,115,116,114,105,110,103,105,102,121,40,100,97,116,97,41,44,10,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,84,121,112,101,58,32,34,97,112,112,108,105,99,97,116,105,111,110,47,106,115,111,110,34,10,32,32,32,32,125,41,46,102,97,105,108,40,101,114,114,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,111,108,101,46,108,111,103,40,101,114,114,41,59,10,32,32,32,32,125,41,59,10,125,59,10,10,119,105,110,100,111,119,46,111,110,108,111,97,100,32,61,32,40,41,32,61,62,32,123,10,32,32,32,32,36,40,34,35,116,104,101,109,101,34,41,46,111,110,40,34,99,108,105,99,107,34,44,32,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,33,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,46,105,110,99,108,117,100,101,115,40,34,115,105,115,116,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,100,97,114,107,34,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,99,117,109,101,110,116,46,99,111,111,107,105,101,32,61,32,34,115,105,115,116,61,59,32,77,97,120,45,65,103,101,61,45,57,57,57,57,57,57,57,57,59,34,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,32,32,32,32,125,41,10,125,59,10,10,102,117,110,99,116,105,111,110,32,116,111,103,103,108,101,70,117,122,122,121,40,41,32,123,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,105,34,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,105,110,100,105,99,101,115,34,93,46,102,111,114,69,97,99,104,40,105,100,120,32,61,62,32,123,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,111,112,116,32,61,32,36,40,34,60,111,112,116,105,111,110,62,34,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,116,116,114,40,34,118,97,108,117,101,34,44,32,105,100,120,46,105,100,41,10,32,32,32,32,32,32,32,32,32,32,32,32,46,97,112,112,101,110,100,40,105,100,120,46,110,97,109,101,41,59,10,32,32,32,32,32,32,32,32,105,102,32,40,33,105,100,120,46,110,97,109,101,46,105,110,99,108,117,100,101,115,40,34,40,110,115,102,119,41,34,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,111,112,116,46,97,116,116,114,40,34,115,101,108,101,99,116,101,100,34,44,32,33,105,100,120,46,110,97,109,101,46,105,110,99,108,117,100,101,115,40,34,40,110,115,102,119,41,34,41,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,105,100,120,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,36,40,34,35,105,110,100,105,99,101,115,34,41,46,97,112,112,101,110,100,40,111,112,116,41,59,10,32,32,32,32,125,41,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,32,40,116,114,101,101,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,40,101,118,101,110,116,44,32,110,111,100,101,44,32,104,97,110,100,108,101,114,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,101,118,101,110,116,46,112,114,101,118,101,110,116,84,114,101,101,68,101,102,97,117,108,116,40,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,33,110,111,100,101,46,105,116,114,101,101,46,115,116,97,116,101,46,99,104,101,99,107,101,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,100,101,115,101,108,101,99,116,40,41,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,104,97,110,100,108,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,10,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,109,105,109,101,84,121,112,101,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,109,105,109,101,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,109,105,109,101,84,121,112,101,115,34,93,91,34,98,117,99,107,101,116,115,34,93,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,109,112,32,61,32,98,117,99,107,101,116,91,34,107,101,121,34,93,46,115,112,108,105,116,40,34,47,34,41,59,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,32,61,32,116,109,112,91,48,93,59,10,32,32,32,32,32,32,32,32,108,101,116,32,109,105,109,101,32,61,32,116,109,112,91,49,93,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,102,97,108,115,101,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,34,105,100,34,58,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,34,116,101,120,116,34,58,32,96,36,123,109,105,109,101,125,32,40,36,123,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,125,41,96,10,32,32,32,32,32,32,32,32,125,59,10,10,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,97,116,101,103,111,114,121,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,111,100,101,46,99,104,105,108,100,114,101,110,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,33,99,97,116,101,103,111,114,121,95,101,120,105,115,116,115,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,99,97,116,101,103,111,114,121,44,32,99,104,105,108,100,114,101,110,58,32,91,99,104,105,108,100,93,125,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,10,32,32,32,32,109,105,109,101,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,109,105,109,101,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,109,105,109,101,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,109,105,109,101,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,109,105,109,101,84,114,101,101,41,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,115,101,108,101,99,116,40,41,59,10,32,32,32,32,109,105,109,101,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,100,101,115,101,108,101,99,116,40,41,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,108,101,97,102,84,97,103,40,116,97,103,41,32,123,10,32,32,32,32,99,111,110,115,116,32,116,111,107,101,110,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,46,34,41,59,10,32,32,32,32,114,101,116,117,114,110,32,116,111,107,101,110,115,91,116,111,107,101,110,115,46,108,101,110,103,116,104,45,49,93,10,125,10,10,47,47,32,84,97,103,115,32,116,114,101,101,10,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,116,97,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,101,114,109,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,116,97,103,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,44,10,32,32,32,32,115,105,122,101,58,32,48,44,10,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,123,10,32,32,32,32,114,101,115,112,91,34,97,103,103,114,101,103,97,116,105,111,110,115,34,93,91,34,116,97,103,115,34,93,91,34,98,117,99,107,101,116,115,34,93,10,32,32,32,32,32,32,32,32,46,115,111,114,116,40,40,97,44,32,98,41,32,61,62,32,97,91,34,107,101,121,34,93,46,108,111,99,97,108,101,67,111,109,112,97,114,101,40,98,91,34,107,101,121,34,93,41,41,10,32,32,32,32,32,32,32,32,46,102,111,114,69,97,99,104,40,98,117,99,107,101,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,116,97,103,77,97,112,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,107,101,121,34,93,44,32,98,117,99,107,101,116,91,34,100,111,99,95,99,111,117,110,116,34,93,41,10,32,32,32,32,125,41,59,10,10,32,32,32,32,116,97,103,77,97,112,46,112,117,115,104,40,123,34,116,101,120,116,34,58,32,34,65,108,108,34,44,32,34,105,100,34,58,32,34,97,110,121,34,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,32,61,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,40,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,111,100,101,58,32,39,99,104,101,99,107,98,111,120,39,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,100,97,116,97,58,32,116,97,103,77,97,112,10,32,32,32,32,125,41,59,10,32,32,32,32,110,101,119,32,73,110,115,112,105,114,101,84,114,101,101,68,79,77,40,116,97,103,84,114,101,101,44,32,123,10,32,32,32,32,32,32,32,32,116,97,114,103,101,116,58,32,39,35,116,97,103,84,114,101,101,39,10,32,32,32,32,125,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,111,110,40,34,110,111,100,101,46,99,108,105,99,107,34,44,32,104,97,110,100,108,101,84,114,101,101,67,108,105,99,107,40,116,97,103,84,114,101,101,41,41,59,10,32,32,32,32,116,97,103,84,114,101,101,46,110,111,100,101,40,34,97,110,121,34,41,46,115,101,108,101,99,116,40,41,59,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,97,100,100,84,97,103,40,109,97,112,44,32,116,97,103,44,32,105,100,44,32,99,111,117,110,116,41,32,123,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,116,97,103,46,115,112,108,105,116,40,34,35,34,41,91,48,93,46,115,112,108,105,116,40,34,46,34,41,59,10,10,32,32,32,32,108,101,116,32,99,104,105,108,100,32,61,32,123,10,32,32,32,32,32,32,32,32,105,100,58,32,105,100,44,10,32,32,32,32,32,32,32,32,116,101,120,116,58,32,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,32,63,32,116,97,103,115,91,48,93,32,58,32,96,36,123,116,97,103,115,91,48,93,125,32,40,36,123,99,111,117,110,116,125,41,96,44,10,32,32,32,32,32,32,32,32,99,104,105,108,100,114,101,110,58,32,91,93,10,32,32,32,32,125,59,10,10,32,32,32,32,108,101,116,32,102,111,117,110,100,32,61,32,102,97,108,115,101,59,10,32,32,32,32,109,97,112,46,102,111,114,69,97,99,104,40,110,111,100,101,32,61,62,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,110,111,100,101,46,116,101,120,116,32,61,61,61,32,99,104,105,108,100,46,116,101,120,116,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,117,110,100,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,110,111,100,101,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,41,59,10,32,32,32,32,105,102,32,40,33,102,111,117,110,100,41,32,123,10,32,32,32,32,32,32,32,32,105,102,32,40,116,97,103,115,46,108,101,110,103,116,104,32,33,61,61,32,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,84,97,103,40,99,104,105,108,100,46,99,104,105,108,100,114,101,110,44,32,116,97,103,115,46,115,108,105,99,101,40,49,41,46,106,111,105,110,40,34,46,34,41,44,32,105,100,44,32,99,111,117,110,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,109,97,112,46,112,117,115,104,40,99,104,105,108,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,10,10,110,101,119,32,97,117,116,111,67,111,109,112,108,101,116,101,40,123,10,32,32,32,32,115,101,108,101,99,116,111,114,58,32,39,35,112,97,116,104,66,97,114,39,44,10,32,32,32,32,109,105,110,67,104,97,114,115,58,32,49,44,10,32,32,32,32,100,101,108,97,121,58,32,52,48,48,44,10,32,32,32,32,114,101,110,100,101,114,73,116,101,109,58,32,102,117,110,99,116,105,111,110,32,40,105,116,101,109,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,39,60,100,105,118,32,99,108,97,115,115,61,34,97,117,116,111,99,111,109,112,108,101,116,101,45,115,117,103,103,101,115,116,105,111,110,34,32,100,97,116,97,45,118,97,108,61,34,39,32,43,32,105,116,101,109,32,43,32,39,34,62,39,32,43,32,105,116,101,109,32,43,32,39,60,47,100,105,118,62,39,59,10,32,32,32,32,125,44,10,32,32,32,32,115,111,117,114,99,101,58,32,97,115,121,110,99,32,102,117,110,99,116,105,111,110,32,40,116,101,114,109,44,32,115,117,103,103,101,115,116,41,32,123,10,32,32,32,32,32,32,32,32,116,101,114,109,32,61,32,116,101,114,109,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,10,10,32,32,32,32,32,32,32,32,99,111,110,115,116,32,99,104,111,105,99,101,115,32,61,32,97,119,97,105,116,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,59,10,10,32,32,32,32,32,32,32,32,108,101,116,32,109,97,116,99,104,101,115,32,61,32,91,93,59,10,32,32,32,32,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,99,104,111,105,99,101,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,126,99,104,111,105,99,101,115,91,105,93,46,116,111,76,111,119,101,114,67,97,115,101,40,41,46,105,110,100,101,120,79,102,40,116,101,114,109,41,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,97,116,99,104,101,115,46,112,117,115,104,40,99,104,111,105,99,101,115,91,105,93,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,40,109,97,116,99,104,101,115,41,59,10,32,32,32,32,125,44,10,32,32,32,32,111,110,83,101,108,101,99,116,58,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,32,123,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,104,105,116,115,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,109,111,100,101,32,61,61,61,32,34,103,114,105,100,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,68,111,99,67,97,114,100,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,46,97,112,112,101,110,100,67,104,105,108,100,40,99,114,101,97,116,101,68,111,99,76,105,110,101,40,104,105,116,115,91,105,93,41,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,43,43,59,10,32,32,32,32,125,10,125,10,10,119,105,110,100,111,119,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,115,99,114,111,108,108,34,44,32,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,105,102,32,40,33,99,111,111,108,105,110,103,68,111,119,110,32,38,38,32,33,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,108,101,116,32,116,104,114,101,115,104,111,108,100,32,61,32,52,48,48,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,40,119,105,110,100,111,119,46,105,110,110,101,114,72,101,105,103,104,116,32,43,32,119,105,110,100,111,119,46,115,99,114,111,108,108,89,41,32,62,61,32,100,111,99,117,109,101,110,116,46,98,111,100,121,46,111,102,102,115,101,116,72,101,105,103,104,116,32,45,32,116,104,114,101,115,104,111,108,100,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,116,114,117,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,100,111,83,99,114,111,108,108,40,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,100,111,83,99,114,111,108,108,40,41,32,123,10,32,32,32,32,36,46,103,101,116,40,34,115,99,114,111,108,108,34,44,32,123,115,99,114,111,108,108,95,105,100,58,32,115,99,114,111,108,108,95,105,100,125,41,10,32,32,32,32,32,32,32,32,46,116,104,101,110,40,115,101,97,114,99,104,82,101,115,117,108,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,115,101,97,114,99,104,82,101,115,117,108,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,104,105,116,115,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,104,105,116,115,34,93,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,80,97,103,101,32,105,110,100,105,99,97,116,111,114,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,112,97,103,101,73,110,100,105,99,97,116,111,114,32,61,32,109,97,107,101,80,97,103,101,73,110,100,105,99,97,116,111,114,40,115,101,97,114,99,104,82,101,115,117,108,116,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,97,103,101,73,110,100,105,99,97,116,111,114,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,47,47,82,101,115,117,108,116,32,99,111,110,116,97,105,110,101,114,10,32,32,32,32,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,59,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,104,105,116,115,41,59,10,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,40,104,105,116,115,46,108,101,110,103,116,104,32,61,61,61,32,83,73,90,69,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,10,32,32,32,32,32,32,32,32,46,102,97,105,108,40,40,41,32,61,62,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,119,105,110,100,111,119,46,108,111,99,97,116,105,111,110,46,114,101,108,111,97,100,40,41,59,10,32,32,32,32,32,32,32,32,125,41,10,125,10,10,102,117,110,99,116,105,111,110,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,114,101,101,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,78,111,100,101,115,32,61,32,91,93,59,10,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,116,114,101,101,46,115,101,108,101,99,116,101,100,40,41,59,10,10,32,32,32,32,102,111,114,32,40,108,101,116,32,105,32,61,32,48,59,32,105,32,60,32,115,101,108,101,99,116,101,100,46,108,101,110,103,116,104,59,32,105,43,43,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,32,61,61,61,32,34,97,110,121,34,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,91,34,97,110,121,34,93,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,47,47,79,110,108,121,32,103,101,116,32,99,104,105,108,100,114,101,110,10,32,32,32,32,32,32,32,32,105,102,32,40,115,101,108,101,99,116,101,100,91,105,93,46,116,101,120,116,46,105,110,100,101,120,79,102,40,34,40,34,41,32,33,61,61,32,45,49,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,78,111,100,101,115,46,112,117,115,104,40,115,101,108,101,99,116,101,100,91,105,93,46,105,100,41,59,10,32,32,32,32,32,32,32,32,125,10,32,32,32,32,125,10,10,32,32,32,32,114,101,116,117,114,110,32,115,101,108,101,99,116,101,100,78,111,100,101,115,10,125,10,10,102,117,110,99,116,105,111,110,32,115,101,97,114,99,104,40,41,32,123,10,32,32,32,32,105,102,32,40,115,101,97,114,99,104,66,117,115,121,41,32,123,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,59,10,32,32,32,32,125,10,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,116,114,117,101,59,10,10,32,32,32,32,47,47,67,108,101,97,114,32,111,108,100,32,115,101,97,114,99,104,32,114,101,115,117,108,116,115,10,32,32,32,32,108,101,116,32,115,101,97,114,99,104,82,101,115,117,108,116,115,32,61,32,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,41,59,10,32,32,32,32,119,104,105,108,101,32,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,32,123,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,114,101,109,111,118,101,67,104,105,108,100,40,115,101,97,114,99,104,82,101,115,117,108,116,115,46,102,105,114,115,116,67,104,105,108,100,41,59,10,32,32,32,32,125,10,10,32,32,32,32,99,111,110,115,116,32,112,114,101,108,111,97,100,32,61,32,109,97,107,101,80,114,101,108,111,97,100,101,114,40,41,59,10,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,112,114,101,108,111,97,100,41,59,10,10,32,32,32,32,108,101,116,32,113,117,101,114,121,32,61,32,115,101,97,114,99,104,66,97,114,46,118,97,108,117,101,59,10,32,32,32,32,108,101,116,32,101,109,112,116,121,32,61,32,113,117,101,114,121,32,61,61,61,32,34,34,59,10,32,32,32,32,108,101,116,32,99,111,110,100,105,116,105,111,110,32,61,32,101,109,112,116,121,32,63,32,34,115,104,111,117,108,100,34,32,58,32,34,109,117,115,116,34,59,10,32,32,32,32,108,101,116,32,102,105,108,116,101,114,115,32,61,32,91,10,32,32,32,32,32,32,32,32,123,114,97,110,103,101,58,32,123,115,105,122,101,58,32,123,103,116,101,58,32,115,105,122,101,95,109,105,110,44,32,108,116,101,58,32,115,105,122,101,95,109,97,120,125,125,125,44,10,32,32,32,32,32,32,32,32,123,116,101,114,109,115,58,32,123,105,110,100,101,120,58,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,125,125,10,32,32,32,32,93,59,10,32,32,32,32,108,101,116,32,102,105,101,108,100,115,32,61,32,91,10,32,32,32,32,32,32,32,32,34,110,97,109,101,94,56,34,44,10,32,32,32,32,32,32,32,32,34,99,111,110,116,101,110,116,94,51,34,44,10,32,32,32,32,32,32,32,32,34,97,108,98,117,109,94,56,34,44,32,34,97,114,116,105,115,116,94,56,34,44,32,34,116,105,116,108,101,94,56,34,44,32,34,103,101,110,114,101,94,50,34,44,32,34,97,108,98,117,109,95,97,114,116,105,115,116,94,56,34,44,10,32,32,32,32,32,32,32,32,34,102,111,110,116,95,110,97,109,101,94,54,34,10,32,32,32,32,93,59,10,10,32,32,32,32,105,102,32,40,36,40,34,35,102,117,122,122,121,84,111,103,103,108,101,34,41,46,112,114,111,112,40,34,99,104,101,99,107,101,100,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,99,111,110,116,101,110,116,46,110,71,114,97,109,34,41,59,10,32,32,32,32,32,32,32,32,102,105,101,108,100,115,46,112,117,115,104,40,34,110,97,109,101,46,110,71,114,97,109,94,51,34,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,112,97,116,104,32,61,32,112,97,116,104,66,97,114,46,118,97,108,117,101,46,114,101,112,108,97,99,101,40,47,92,47,36,47,44,32,34,34,41,46,116,111,76,111,119,101,114,67,97,115,101,40,41,59,32,47,47,114,101,109,111,118,101,32,116,114,97,105,108,105,110,103,32,115,108,97,115,104,101,115,10,32,32,32,32,105,102,32,40,112,97,116,104,32,33,61,61,32,34,34,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,58,32,123,112,97,116,104,58,32,112,97,116,104,125,125,93,41,10,32,32,32,32,125,10,32,32,32,32,108,101,116,32,109,105,109,101,84,121,112,101,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,109,105,109,101,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,109,105,109,101,84,121,112,101,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,109,105,109,101,34,58,32,109,105,109,101,84,121,112,101,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,108,101,116,32,116,97,103,115,32,61,32,103,101,116,83,101,108,101,99,116,101,100,78,111,100,101,115,40,116,97,103,84,114,101,101,41,59,10,32,32,32,32,105,102,32,40,33,116,97,103,115,46,105,110,99,108,117,100,101,115,40,34,97,110,121,34,41,41,32,123,10,32,32,32,32,32,32,32,32,102,105,108,116,101,114,115,46,112,117,115,104,40,91,123,116,101,114,109,115,58,32,123,34,116,97,103,34,58,32,116,97,103,115,125,125,93,41,59,10,32,32,32,32,125,10,10,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,63,115,99,114,111,108,108,61,49,34,44,32,123,10,32,32,32,32,32,32,32,32,34,95,115,111,117,114,99,101,34,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,101,120,99,108,117,100,101,115,58,32,91,34,99,111,110,116,101,110,116,34,93,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,98,111,111,108,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,91,99,111,110,100,105,116,105,111,110,93,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,109,117,108,116,105,95,109,97,116,99,104,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,113,117,101,114,121,58,32,113,117,101,114,121,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,121,112,101,58,32,34,109,111,115,116,95,102,105,101,108,100,115,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,102,105,101,108,100,115,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,112,101,114,97,116,111,114,58,32,34,97,110,100,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,108,116,101,114,58,32,102,105,108,116,101,114,115,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,111,114,116,58,32,91,10,32,32,32,32,32,32,32,32,32,32,32,32,34,95,115,99,111,114,101,34,10,32,32,32,32,32,32,32,32,93,44,10,32,32,32,32,32,32,32,32,104,105,103,104,108,105,103,104,116,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,95,116,97,103,115,58,32,91,34,60,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,112,111,115,116,95,116,97,103,115,58,32,91,34,60,47,109,97,114,107,62,34,93,44,10,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,110,116,101,110,116,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,34,110,97,109,101,46,110,71,114,97,109,34,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,111,110,116,95,110,97,109,101,58,32,123,125,44,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,97,103,103,115,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,116,111,116,97,108,95,115,105,122,101,58,32,123,34,115,117,109,34,58,32,123,34,102,105,101,108,100,34,58,32,34,115,105,122,101,34,125,125,10,32,32,32,32,32,32,32,32,125,44,10,32,32,32,32,32,32,32,32,115,105,122,101,58,32,83,73,90,69,44,10,32,32,32,32,125,41,46,116,104,101,110,40,115,101,97,114,99,104,82,101,115,117,108,116,32,61,62,32,123,10,32,32,32,32,32,32,32,32,115,99,114,111,108,108,95,105,100,32,61,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,95,115,99,114,111,108,108,95,105,100,34,93,59,10,10,32,32,32,32,32,32,32,32,112,114,101,108,111,97,100,46,114,101,109,111,118,101,40,41,59,10,32,32,32,32,32,32,32,32,47,47,83,101,97,114,99,104,32,115,116,97,116,115,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,109,97,107,101,83,116,97,116,115,67,97,114,100,40,115,101,97,114,99,104,82,101,115,117,108,116,41,41,59,10,10,32,32,32,32,32,32,32,32,47,47,83,101,116,117,112,32,112,97,103,101,10,32,32,32,32,32,32,32,32,108,101,116,32,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,32,61,32,109,97,107,101,82,101,115,117,108,116,67,111,110,116,97,105,110,101,114,40,41,59,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,82,101,115,117,108,116,115,46,97,112,112,101,110,100,67,104,105,108,100,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,41,59,10,10,32,32,32,32,32,32,32,32,100,111,99,67,111,117,110,116,32,61,32,48,59,10,32,32,32,32,32,32,32,32,105,110,115,101,114,116,72,105,116,115,40,114,101,115,117,108,116,67,111,110,116,97,105,110,101,114,44,32,115,101,97,114,99,104,82,101,115,117,108,116,91,34,104,105,116,115,34,93,91,34,104,105,116,115,34,93,41,59,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,66,117,115,121,32,61,32,102,97,108,115,101,59,10,32,32,32,32,125,41,59,10,125,10,10,108,101,116,32,115,105,122,101,95,109,105,110,32,61,32,48,59,10,108,101,116,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,10,108,101,116,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,32,61,32,95,46,100,101,98,111,117,110,99,101,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,99,111,111,108,105,110,103,68,111,119,110,32,61,32,102,97,108,115,101,59,10,32,32,32,32,115,101,97,114,99,104,40,41,10,125,44,32,53,48,48,41,59,10,10,115,101,97,114,99,104,66,97,114,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,107,101,121,117,112,34,44,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,41,59,10,10,47,47,83,105,122,101,32,115,108,105,100,101,114,10,36,40,34,35,115,105,122,101,83,108,105,100,101,114,34,41,46,105,111,110,82,97,110,103,101,83,108,105,100,101,114,40,123,10,32,32,32,32,116,121,112,101,58,32,34,100,111,117,98,108,101,34,44,10,32,32,32,32,103,114,105,100,58,32,102,97,108,115,101,44,10,32,32,32,32,102,111,114,99,101,95,101,100,103,101,115,58,32,116,114,117,101,44,10,32,32,32,32,109,105,110,58,32,48,44,10,32,32,32,32,109,97,120,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,102,114,111,109,58,32,48,44,10,32,32,32,32,116,111,58,32,51,54,56,52,46,48,51,49,52,57,56,54,52,44,10,32,32,32,32,109,105,110,95,105,110,116,101,114,118,97,108,58,32,53,44,10,32,32,32,32,100,114,97,103,95,105,110,116,101,114,118,97,108,58,32,116,114,117,101,44,10,32,32,32,32,112,114,101,116,116,105,102,121,58,32,102,117,110,99,116,105,111,110,32,40,110,117,109,41,32,123,10,10,32,32,32,32,32,32,32,32,105,102,32,40,110,117,109,32,61,61,61,32,48,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,48,32,66,34,10,32,32,32,32,32,32,32,32,125,32,101,108,115,101,32,105,102,32,40,110,117,109,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,32,43,32,34,43,34,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,117,109,97,110,70,105,108,101,83,105,122,101,40,110,117,109,32,42,32,110,117,109,32,42,32,110,117,109,41,10,32,32,32,32,125,44,10,32,32,32,32,111,110,67,104,97,110,103,101,58,32,102,117,110,99,116,105,111,110,32,40,101,41,32,123,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,105,110,32,61,32,40,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,32,42,32,101,46,102,114,111,109,41,59,10,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,40,101,46,116,111,32,42,32,101,46,116,111,32,42,32,101,46,116,111,41,59,10,10,32,32,32,32,32,32,32,32,105,102,32,40,101,46,116,111,32,62,61,32,51,54,56,52,41,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,95,109,97,120,32,61,32,49,48,48,48,48,48,48,48,48,48,48,48,48,48,59,10,32,32,32,32,32,32,32,32,125,10,10,32,32,32,32,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,32,32,32,32,125,10,125,41,59,10,10,102,117,110,99,116,105,111,110,32,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,32,123,10,32,32,32,32,108,101,116,32,115,101,108,101,99,116,101,100,32,61,32,36,40,39,35,105,110,100,105,99,101,115,39,41,46,102,105,110,100,40,39,111,112,116,105,111,110,58,115,101,108,101,99,116,101,100,39,41,59,10,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,32,61,32,91,93,59,10,32,32,32,32,36,40,115,101,108,101,99,116,101,100,41,46,101,97,99,104,40,102,117,110,99,116,105,111,110,32,40,41,32,123,10,32,32,32,32,32,32,32,32,115,101,108,101,99,116,101,100,73,110,100,105,99,101,115,46,112,117,115,104,40,36,40,116,104,105,115,41,46,118,97,108,40,41,41,59,10,32,32,32,32,125,41,59,10,10,32,32,32,32,115,101,97,114,99,104,68,101,98,111,117,110,99,101,100,40,41,59,10,125,10,10,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,34,105,110,100,105,99,101,115,34,41,46,97,100,100,69,118,101,110,116,76,105,115,116,101,110,101,114,40,34,99,104,97,110,103,101,34,44,32,117,112,100,97,116,101,73,110,100,105,99,101,115,41,59,10,117,112,100,97,116,101,73,110,100,105,99,101,115,40,41,59,10,10,47,47,83,117,103,103,101,115,116,10,102,117,110,99,116,105,111,110,32,103,101,116,80,97,116,104,67,104,111,105,99,101,115,40,41,32,123,10,32,32,32,32,114,101,116,117,114,110,32,110,101,119,32,80,114,111,109,105,115,101,40,103,101,116,80,97,116,104,115,32,61,62,32,123,10,32,32,32,32,32,32,32,32,36,46,106,115,111,110,80,111,115,116,40,34,101,115,34,44,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,115,117,103,103,101,115,116,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,97,116,104,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,112,114,101,102,105,120,58,32,112,97,116,104,66,97,114,46,118,97,108,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,99,111,109,112,108,101,116,105,111,110,58,32,123,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,105,101,108,100,58,32,34,115,117,103,103,101,115,116,45,112,97,116,104,34,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,107,105,112,95,100,117,112,108,105,99,97,116,101,115,58,32,116,114,117,101,44,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,105,122,101,58,32,49,48,48,48,48,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,32,32,32,32,125,10,32,32,32,32,32,32,32,32,125,41,46,116,104,101,110,40,114,101,115,112,32,61,62,32,103,101,116,80,97,116,104,115,40,114,101,115,112,91,34,115,117,103,103,101,115,116,34,93,91,34,112,97,116,104,34,93,91,48,93,91,34,111,112,116,105,111,110,115,34,93,46,109,97,112,40,111,112,116,32,61,62,32,111,112,116,91,34,95,115,111,117,114,99,101,34,93,91,34,112,97,116,104,34,93,41,41,41,59,10,32,32,32,32,125,41,10,125,10,10}; char sprite_skin_flat_png[669] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,226,4,15,15,9,24,243,73,194,157,0,0,2,42,73,68,65,84,120,218,237,221,33,110,219,96,0,134,225,207,150,193,72,122,129,144,154,180,42,24,154,194,10,2,42,85,161,61,198,110,144,19,236,6,225,61,192,66,75,2,10,202,166,33,3,171,33,105,164,20,4,46,33,3,147,92,18,21,85,37,147,186,104,126,30,26,96,233,3,175,126,89,138,255,98,189,217,118,1,72,82,154,0,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,34,73,158,239,238,207,254,124,190,248,150,228,42,201,137,89,160,55,118,73,22,85,211,78,135,147,241,178,56,196,224,135,16,64,191,195,80,53,237,168,88,111,182,223,147,220,216,3,122,111,94,172,55,219,95,78,7,64,146,93,41,6,192,193,137,123,25,128,87,130,0,8,2,240,118,16,118,102,0,114,120,169,184,176,3,144,100,81,86,77,59,117,74,0,167,131,170,105,167,229,112,50,94,86,77,59,74,50,23,6,232,95,8,146,204,171,166,29,13,39,227,165,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,227,87,212,179,125,103,6,32,113,47,3,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,73,138,36,121,190,187,63,187,92,125,121,252,200,7,175,190,14,10,243,195,113,41,255,69,12,128,35,13,130,24,0,175,65,48,1,32,8,128,32,0,130,0,8,2,32,8,128,32,0,127,25,132,135,250,231,185,25,128,36,41,135,147,241,82,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,64,61,219,119,245,108,223,89,2,250,161,122,239,199,223,79,43,11,65,143,248,12,59,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,71,226,221,239,33,124,58,173,45,4,0,0,0,0,0,0,0,0,0,0,0,0,124,188,193,245,109,55,184,190,117,251,51,244,132,191,63,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,0,0,0,0,0,0,0,0,0,0,0,0,36,121,1,4,9,83,90,112,63,72,221,0,0,0,0,73,69,78,68,174,66,96,130}; char sprite_skin_flat_dark_png[595] = {137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,4,0,0,0,180,8,6,0,0,0,114,181,82,203,0,0,0,6,98,75,71,68,0,0,0,0,0,0,249,67,187,127,0,0,0,9,112,72,89,115,0,0,11,19,0,0,11,19,1,0,154,156,24,0,0,0,7,116,73,77,69,7,227,10,31,0,56,13,119,224,92,162,0,0,1,224,73,68,65,84,120,218,237,221,33,110,194,96,0,134,225,239,111,54,137,155,33,120,106,230,177,136,133,6,69,178,147,192,73,182,43,112,1,44,201,130,224,16,24,240,4,179,27,44,89,167,134,156,33,97,108,125,30,91,209,228,19,175,106,255,191,140,154,89,27,128,36,149,9,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,41,73,114,92,111,135,207,175,47,123,115,64,55,173,230,139,122,48,29,31,138,24,0,223,81,40,163,102,214,154,2,72,156,186,12,8,2,32,8,128,32,0,130,0,8,2,32,8,192,229,65,88,205,23,181,25,128,213,124,81,251,116,25,56,127,186,108,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,246,149,108,118,238,118,4,146,56,117,25,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,36,37,73,142,235,237,112,112,255,176,191,234,155,159,30,139,249,225,182,84,191,18,3,224,54,131,32,6,192,57,8,38,0,4,1,16,4,64,16,0,65,0,4,1,16,4,224,194,32,28,63,222,107,51,0,73,82,13,166,227,131,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,193,102,215,102,179,107,13,1,221,112,247,211,195,254,219,103,146,228,100,39,232,4,199,176,3,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,32,8,128,32,0,130,0,8,2,240,23,130,112,154,84,57,77,52,3,0,0,0,0,0,0,0,0,0,0,0,0,184,178,94,179,108,123,205,210,237,207,208,17,126,101,4,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,4,1,16,4,64,16,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,72,242,5,81,103,62,209,158,129,108,239,0,0,0,0,73,69,78,68,174,66,96,130}; -char search_html[3064] = {60,33,68,79,67,84,89,80,69,32,104,116,109,108,62,10,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,10,60,104,101,97,100,62,10,32,32,32,32,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,10,32,32,32,32,60,116,105,116,108,101,62,115,105,115,116,50,32,45,32,83,101,97,114,99,104,60,47,116,105,116,108,101,62,10,32,32,32,32,60,109,101,116,97,32,110,97,109,101,61,39,118,105,101,119,112,111,114,116,39,32,99,111,110,116,101,110,116,61,39,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,32,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,46,48,44,32,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,46,48,44,32,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,39,47,62,10,10,32,32,32,32,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,32,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,62,10,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,10,60,110,97,118,32,99,108,97,115,115,61,34,110,97,118,98,97,114,32,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,34,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,98,97,114,45,98,114,97,110,100,34,32,104,114,101,102,61,34,47,34,62,115,105,115,116,50,60,47,97,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,118,101,114,115,105,111,110,34,62,118,49,46,49,46,55,60,47,115,112,97,110,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,116,97,103,108,105,110,101,34,62,76,105,103,104,116,110,105,110,103,45,102,97,115,116,32,102,105,108,101,32,115,121,115,116,101,109,32,105,110,100,101,120,101,114,32,97,110,100,32,115,101,97,114,99,104,32,116,111,111,108,32,60,47,115,112,97,110,62,10,32,32,32,32,60,97,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,108,101,102,116,58,32,97,117,116,111,34,32,105,100,61,34,116,104,101,109,101,34,32,99,108,97,115,115,61,34,98,116,110,34,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,116,104,101,109,101,34,32,104,114,101,102,61,34,47,34,62,84,104,101,109,101,60,47,97,62,10,60,47,110,97,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,99,111,110,116,97,105,110,101,114,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,112,97,116,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,70,105,108,116,101,114,32,112,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,32,111,110,99,108,105,99,107,61,34,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,39,102,117,122,122,121,84,111,103,103,108,101,39,41,46,99,108,105,99,107,40,41,34,62,70,117,122,122,121,38,110,98,115,112,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,105,100,61,34,102,117,122,122,121,84,111,103,103,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,70,117,122,122,121,40,41,34,32,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,115,101,97,114,99,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,83,101,97,114,99,104,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,70,105,108,101,32,115,105,122,101,34,32,105,100,61,34,115,105,122,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,105,110,100,105,99,101,115,34,62,83,101,97,114,99,104,32,105,110,32,105,110,100,105,99,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,115,101,108,101,99,116,34,32,105,100,61,34,105,110,100,105,99,101,115,34,32,109,117,108,116,105,112,108,101,32,115,105,122,101,61,34,54,34,62,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,32,105,100,61,34,116,114,101,101,84,97,98,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,117,108,32,99,108,97,115,115,61,34,110,97,118,32,110,97,118,45,116,97,98,115,34,32,114,111,108,101,61,34,116,97,98,108,105,115,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,32,97,99,116,105,118,101,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,104,111,109,101,34,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,116,114,117,101,34,62,77,105,109,101,32,84,121,112,101,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,116,97,103,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,112,114,111,102,105,108,101,34,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,102,97,108,115,101,34,32,116,105,116,108,101,61,34,85,115,101,114,45,100,101,102,105,110,101,100,32,116,97,103,115,34,62,84,97,103,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,117,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,99,111,110,116,101,110,116,34,32,105,100,61,34,109,121,84,97,98,67,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,32,115,104,111,119,32,97,99,116,105,118,101,34,32,105,100,61,34,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,104,111,109,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,109,105,109,101,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,34,32,105,100,61,34,116,97,103,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,112,114,111,102,105,108,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,116,97,103,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,62,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; +char search_html[3064] = {60,33,68,79,67,84,89,80,69,32,104,116,109,108,62,10,60,104,116,109,108,32,108,97,110,103,61,34,101,110,34,62,10,60,104,101,97,100,62,10,32,32,32,32,60,109,101,116,97,32,99,104,97,114,115,101,116,61,34,117,116,102,45,56,34,62,10,32,32,32,32,60,116,105,116,108,101,62,115,105,115,116,50,32,45,32,83,101,97,114,99,104,60,47,116,105,116,108,101,62,10,32,32,32,32,60,109,101,116,97,32,110,97,109,101,61,39,118,105,101,119,112,111,114,116,39,32,99,111,110,116,101,110,116,61,39,119,105,100,116,104,61,100,101,118,105,99,101,45,119,105,100,116,104,44,32,105,110,105,116,105,97,108,45,115,99,97,108,101,61,49,46,48,44,32,109,97,120,105,109,117,109,45,115,99,97,108,101,61,49,46,48,44,32,117,115,101,114,45,115,99,97,108,97,98,108,101,61,110,111,39,47,62,10,10,32,32,32,32,60,108,105,110,107,32,104,114,101,102,61,34,99,115,115,34,32,114,101,108,61,34,115,116,121,108,101,115,104,101,101,116,34,32,116,121,112,101,61,34,116,101,120,116,47,99,115,115,34,62,10,60,47,104,101,97,100,62,10,60,98,111,100,121,62,10,10,60,110,97,118,32,99,108,97,115,115,61,34,110,97,118,98,97,114,32,110,97,118,98,97,114,45,101,120,112,97,110,100,45,108,103,34,62,10,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,98,97,114,45,98,114,97,110,100,34,32,104,114,101,102,61,34,47,34,62,115,105,115,116,50,60,47,97,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,98,97,100,103,101,32,98,97,100,103,101,45,112,105,108,108,32,118,101,114,115,105,111,110,34,62,118,49,46,49,46,56,60,47,115,112,97,110,62,10,32,32,32,32,60,115,112,97,110,32,99,108,97,115,115,61,34,116,97,103,108,105,110,101,34,62,76,105,103,104,116,110,105,110,103,45,102,97,115,116,32,102,105,108,101,32,115,121,115,116,101,109,32,105,110,100,101,120,101,114,32,97,110,100,32,115,101,97,114,99,104,32,116,111,111,108,32,60,47,115,112,97,110,62,10,32,32,32,32,60,97,32,115,116,121,108,101,61,34,109,97,114,103,105,110,45,108,101,102,116,58,32,97,117,116,111,34,32,105,100,61,34,116,104,101,109,101,34,32,99,108,97,115,115,61,34,98,116,110,34,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,116,104,101,109,101,34,32,104,114,101,102,61,34,47,34,62,84,104,101,109,101,60,47,97,62,10,60,47,110,97,118,62,10,10,60,100,105,118,32,99,108,97,115,115,61,34,99,111,110,116,97,105,110,101,114,34,62,10,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,34,62,10,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,97,114,100,45,98,111,100,121,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,102,111,114,109,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,112,97,116,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,70,105,108,116,101,114,32,112,97,116,104,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,112,114,101,112,101,110,100,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,105,110,112,117,116,45,103,114,111,117,112,45,116,101,120,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,112,97,110,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,32,111,110,99,108,105,99,107,61,34,100,111,99,117,109,101,110,116,46,103,101,116,69,108,101,109,101,110,116,66,121,73,100,40,39,102,117,122,122,121,84,111,103,103,108,101,39,41,46,99,108,105,99,107,40,41,34,62,70,117,122,122,121,38,110,98,115,112,60,47,115,112,97,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,84,111,103,103,108,101,32,102,117,122,122,121,32,115,101,97,114,99,104,105,110,103,34,32,116,121,112,101,61,34,99,104,101,99,107,98,111,120,34,32,105,100,61,34,102,117,122,122,121,84,111,103,103,108,101,34,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,110,99,108,105,99,107,61,34,116,111,103,103,108,101,70,117,122,122,121,40,41,34,32,99,104,101,99,107,101,100,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,105,100,61,34,115,101,97,114,99,104,66,97,114,34,32,116,121,112,101,61,34,115,101,97,114,99,104,34,32,99,108,97,115,115,61,34,102,111,114,109,45,99,111,110,116,114,111,108,34,32,112,108,97,99,101,104,111,108,100,101,114,61,34,83,101,97,114,99,104,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,105,110,112,117,116,32,116,105,116,108,101,61,34,70,105,108,101,32,115,105,122,101,34,32,105,100,61,34,115,105,122,101,83,108,105,100,101,114,34,32,110,97,109,101,61,34,115,105,122,101,34,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,114,111,119,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,32,102,111,114,61,34,105,110,100,105,99,101,115,34,62,83,101,97,114,99,104,32,105,110,32,105,110,100,105,99,101,115,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,101,108,101,99,116,32,99,108,97,115,115,61,34,99,117,115,116,111,109,45,115,101,108,101,99,116,34,32,105,100,61,34,105,110,100,105,99,101,115,34,32,109,117,108,116,105,112,108,101,32,115,105,122,101,61,34,54,34,62,60,47,115,101,108,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,99,111,108,34,32,105,100,61,34,116,114,101,101,84,97,98,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,117,108,32,99,108,97,115,115,61,34,110,97,118,32,110,97,118,45,116,97,98,115,34,32,114,111,108,101,61,34,116,97,98,108,105,115,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,32,97,99,116,105,118,101,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,104,111,109,101,34,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,116,114,117,101,34,62,77,105,109,101,32,84,121,112,101,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,108,105,32,99,108,97,115,115,61,34,110,97,118,45,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,97,32,99,108,97,115,115,61,34,110,97,118,45,108,105,110,107,34,32,100,97,116,97,45,116,111,103,103,108,101,61,34,116,97,98,34,32,104,114,101,102,61,34,35,116,97,103,34,32,114,111,108,101,61,34,116,97,98,34,32,97,114,105,97,45,99,111,110,116,114,111,108,115,61,34,112,114,111,102,105,108,101,34,32,97,114,105,97,45,115,101,108,101,99,116,101,100,61,34,102,97,108,115,101,34,32,116,105,116,108,101,61,34,85,115,101,114,45,100,101,102,105,110,101,100,32,116,97,103,115,34,62,84,97,103,115,60,47,97,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,108,105,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,117,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,99,111,110,116,101,110,116,34,32,105,100,61,34,109,121,84,97,98,67,111,110,116,101,110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,32,115,104,111,119,32,97,99,116,105,118,101,34,32,105,100,61,34,109,105,109,101,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,104,111,109,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,109,105,109,101,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,99,108,97,115,115,61,34,116,97,98,45,112,97,110,101,32,102,97,100,101,34,32,105,100,61,34,116,97,103,34,32,114,111,108,101,61,34,116,97,98,112,97,110,101,108,34,32,97,114,105,97,45,108,97,98,101,108,108,101,100,98,121,61,34,112,114,111,102,105,108,101,45,116,97,98,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,100,105,118,32,105,100,61,34,116,97,103,84,114,101,101,34,32,99,108,97,115,115,61,34,116,114,101,101,34,62,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,32,32,32,32,60,47,100,105,118,62,10,32,32,32,32,60,47,100,105,118,62,10,10,32,32,32,32,60,100,105,118,32,105,100,61,34,115,101,97,114,99,104,82,101,115,117,108,116,115,34,62,60,47,100,105,118,62,10,60,47,100,105,118,62,10,10,60,115,99,114,105,112,116,32,115,114,99,61,34,106,115,34,32,116,121,112,101,61,34,116,101,120,116,47,106,97,118,97,115,99,114,105,112,116,34,62,60,47,115,99,114,105,112,116,62,10,60,47,98,111,100,121,62,10,60,47,104,116,109,108,62,10}; diff --git a/web/search.html b/web/search.html index 3d40262..348c39c 100644 --- a/web/search.html +++ b/web/search.html @@ -11,7 +11,7 @@